aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-11-23 16:51:01 -0600
committerTed Gould <ted@canonical.com>2009-11-23 16:51:01 -0600
commit756b6c9aa6b03489fb47b2ecc82944df0fd54bad (patch)
treed60620b109a8e41587938fd15610f1e27b6b786d /src
parent25d690a42cb12ca9136932d7ace759bbe4185f86 (diff)
downloadayatana-indicator-application-756b6c9aa6b03489fb47b2ecc82944df0fd54bad.tar.gz
ayatana-indicator-application-756b6c9aa6b03489fb47b2ecc82944df0fd54bad.tar.bz2
ayatana-indicator-application-756b6c9aa6b03489fb47b2ecc82944df0fd54bad.zip
Forgot return types.
Diffstat (limited to 'src')
-rw-r--r--src/indicator-custom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indicator-custom.c b/src/indicator-custom.c
index 53e2269..a32db80 100644
--- a/src/indicator-custom.c
+++ b/src/indicator-custom.c
@@ -89,8 +89,8 @@ 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);
+ 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;
}