[gtk: 1/3] a11y: Send correct object reference for the root accessible




commit 7fc90aed26b61ad752fff237303ab58a114b00c0
Author: Mike Gorse <mgorse suse com>
Date:   Thu Jul 29 15:55:58 2021 -0500

    a11y: Send correct object reference for the root accessible

 gtk/a11y/gtkatspiroot.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/gtk/a11y/gtkatspiroot.c b/gtk/a11y/gtkatspiroot.c
index c25ddd5717..73ceb23f13 100644
--- a/gtk/a11y/gtkatspiroot.c
+++ b/gtk/a11y/gtkatspiroot.c
@@ -776,7 +776,9 @@ gtk_at_spi_root_to_ref (GtkAtSpiRoot *self)
   if (self->desktop_path == NULL)
     return gtk_at_spi_null_ref ();
 
-  return g_variant_new ("(so)", self->desktop_name, self->desktop_path);
+  return g_variant_new ("(so)",
+                        g_dbus_connection_get_unique_name (self->connection),
+                        self->root_path);
 }
 
 const char *


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]