aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-11-23 17:33:26 -0600
committerTed Gould <ted@canonical.com>2009-11-23 17:33:26 -0600
commitf0b58f56e4495d5a499fe165f1a7c48aac11e5ef (patch)
tree010317d10e2f2931718ac4919fc04ea042018bbc
parent756b6c9aa6b03489fb47b2ecc82944df0fd54bad (diff)
downloadayatana-indicator-application-f0b58f56e4495d5a499fe165f1a7c48aac11e5ef.tar.gz
ayatana-indicator-application-f0b58f56e4495d5a499fe165f1a7c48aac11e5ef.tar.bz2
ayatana-indicator-application-f0b58f56e4495d5a499fe165f1a7c48aac11e5ef.zip
Moving the registration of the marshallers until after the proxy. Odd that I'd have to do this, but let's try.
-rw-r--r--src/indicator-custom.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/indicator-custom.c b/src/indicator-custom.c
index a32db80..e505e7a 100644
--- a/src/indicator-custom.c
+++ b/src/indicator-custom.c
@@ -88,10 +88,6 @@ indicator_custom_class_init (IndicatorCustomClass *klass)
io_class->get_entries = get_entries;
- /* Register the marshallers for the dbus signals */
- dbus_g_object_register_marshaller(g_cclosure_marshal_VOID__INT, G_TYPE_NONE, G_TYPE_INT, G_TYPE_INVALID);
- dbus_g_object_register_marshaller(_custom_service_marshal_VOID__STRING_INT_STRING_STRING, G_TYPE_NONE, G_TYPE_STRING, G_TYPE_INT, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INVALID);
-
return;
}
@@ -176,6 +172,10 @@ connected (IndicatorServiceManager * sm, gboolean connected, IndicatorCustom * c
INDICATOR_CUSTOM_DBUS_IFACE,
&error);
+ /* Register the marshallers for the dbus signals */
+ dbus_g_object_register_marshaller(g_cclosure_marshal_VOID__INT, G_TYPE_NONE, G_TYPE_INT, G_TYPE_INVALID);
+ dbus_g_object_register_marshaller(_custom_service_marshal_VOID__STRING_INT_STRING_STRING, G_TYPE_NONE, G_TYPE_STRING, G_TYPE_INT, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INVALID);
+
/* Set up proxy signals */
dbus_g_proxy_add_signal(priv->service_proxy,
"ApplicationAdded",