diff options
author | Ted Gould <ted@canonical.com> | 2009-08-08 06:54:10 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-08-08 06:54:10 -0600 |
commit | b3c64d972bbea808af72124e4b64005329292e4b (patch) | |
tree | c7e0aecd40b7fa56cd3f3e5e5508c4e396ce4024 /src | |
parent | 8f305c45c5993e38ca76261cbe4135a55b4cfa4d (diff) | |
download | ayatana-indicator-session-b3c64d972bbea808af72124e4b64005329292e4b.tar.gz ayatana-indicator-session-b3c64d972bbea808af72124e4b64005329292e4b.tar.bz2 ayatana-indicator-session-b3c64d972bbea808af72124e4b64005329292e4b.zip |
Changing the signal prototype to be strings instead of pointers.
Diffstat (limited to 'src')
-rw-r--r-- | src/status-service-dbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/status-service-dbus.c b/src/status-service-dbus.c index 2ac34af..09d2711 100644 --- a/src/status-service-dbus.c +++ b/src/status-service-dbus.c @@ -102,8 +102,8 @@ status_service_dbus_class_init (StatusServiceDbusClass *klass) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET(StatusServiceDbusClass, status_icons_changed), NULL, NULL, - g_cclosure_marshal_VOID__POINTER, - G_TYPE_NONE, 1, G_TYPE_POINTER); + g_cclosure_marshal_VOID__STRING, + G_TYPE_NONE, 1, G_TYPE_STRING); dbus_g_object_type_install_info(STATUS_SERVICE_DBUS_TYPE, &dbus_glib__status_service_server_object_info); |