forked from pool/at-spi2-core
Copy from home:vuntz:branches:GNOME:Factory/at-spi2-core via accept of submit request 36202 revision 2. Request was accepted with message: ok OBS-URL: https://build.opensuse.org/request/show/36202 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/at-spi2-core?expand=0&rev=22
35 lines
880 B
Diff
35 lines
880 B
Diff
--- registryd/registry.c
|
|
+++ registryd/registry.c
|
|
@@ -99,6 +99,7 @@
|
|
&variant);
|
|
dbus_message_iter_append_basic (&variant, DBUS_TYPE_STRING, &str);
|
|
dbus_message_iter_close_container (iter, &variant);
|
|
+ return TRUE;
|
|
}
|
|
|
|
static void
|
|
@@ -440,6 +441,7 @@
|
|
dbus_int32_t rv = reg->apps->len;
|
|
|
|
dbus_message_iter_append_basic (iter, DBUS_TYPE_INT32, &rv);
|
|
+ return TRUE;
|
|
}
|
|
|
|
static DBusMessage *
|
|
@@ -755,6 +757,7 @@
|
|
{
|
|
emit_event (bus, SPI_DBUS_INTERFACE_EVENT_OBJECT, "ChildrenChanged", "add", index, 0,
|
|
name, path);
|
|
+ return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
@@ -765,6 +768,7 @@
|
|
{
|
|
emit_event (bus, SPI_DBUS_INTERFACE_EVENT_OBJECT, "ChildrenChanged", "remove", index, 0,
|
|
name, SPI_DBUS_PATH_NULL);
|
|
+ return TRUE;
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|