aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-11-23 16:51:27 -0600
committerTed Gould <ted@canonical.com>2009-11-23 16:51:27 -0600
commit28f794c6645975cad2690080e8df8ce5d468b0c4 (patch)
tree78a660f1c78effdf68d318cee8f29721e24537d3
parentc27868e0cbaf00a6b8aab8bbc8ed2d77d0ab4e30 (diff)
parent756b6c9aa6b03489fb47b2ecc82944df0fd54bad (diff)
downloadayatana-indicator-application-28f794c6645975cad2690080e8df8ce5d468b0c4.tar.gz
ayatana-indicator-application-28f794c6645975cad2690080e8df8ce5d468b0c4.tar.bz2
ayatana-indicator-application-28f794c6645975cad2690080e8df8ce5d468b0c4.zip
Forgot return types.
-rw-r--r--debian/changelog6
-rw-r--r--src/indicator-custom.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index e00649b..9f967b8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+indicator-custom (0.0.1-0ubuntu3~ppa1~service5) UNRELEASED; urgency=low
+
+ * Forgot return types.
+
+ -- Ted Gould <ted@ubuntu.com> Mon, 23 Nov 2009 16:51:13 -0600
+
indicator-custom (0.0.1-0ubuntu3~ppa1~service4) karmic; urgency=low
* Adding marshallers
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;
}