diff options
author | Ted Gould <ted@canonical.com> | 2009-11-23 16:35:45 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-11-23 16:35:45 -0600 |
commit | 25d690a42cb12ca9136932d7ace759bbe4185f86 (patch) | |
tree | 24e233ce94e9fcfcc62d54bd38d2de213fd4a735 /src/indicator-custom.c | |
parent | 009e468befbd97cf69263b47a01bc66d9a119d66 (diff) | |
download | ayatana-indicator-application-25d690a42cb12ca9136932d7ace759bbe4185f86.tar.gz ayatana-indicator-application-25d690a42cb12ca9136932d7ace759bbe4185f86.tar.bz2 ayatana-indicator-application-25d690a42cb12ca9136932d7ace759bbe4185f86.zip |
Registering marshallers for DBus in the indicator.
Diffstat (limited to 'src/indicator-custom.c')
-rw-r--r-- | src/indicator-custom.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/indicator-custom.c b/src/indicator-custom.c index 3bd2aa9..53e2269 100644 --- a/src/indicator-custom.c +++ b/src/indicator-custom.c @@ -16,6 +16,7 @@ /* Local Stuff */ #include "dbus-shared.h" #include "custom-service-client.h" +#include "custom-service-marshal.h" #define INDICATOR_CUSTOM_TYPE (indicator_custom_get_type ()) #define INDICATOR_CUSTOM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), INDICATOR_CUSTOM_TYPE, IndicatorCustom)) @@ -87,6 +88,10 @@ 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_INT, G_TYPE_INVALID); + dbus_g_object_register_marshaller(_custom_service_marshal_VOID__STRING_INT_STRING_STRING, G_TYPE_STRING, G_TYPE_INT, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INVALID); + return; } @@ -184,6 +189,7 @@ connected (IndicatorServiceManager * sm, gboolean connected, IndicatorCustom * c G_TYPE_INT, G_TYPE_NONE); + /* Connect to them */ dbus_g_proxy_connect_signal(priv->service_proxy, "ApplicationAdded", G_CALLBACK(application_added), |