aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-07-21 11:41:46 -0500
committerTed Gould <ted@canonical.com>2009-07-21 11:41:46 -0500
commit53908231e04a6b04ff07bde18bc737079a83aa4f (patch)
treeff16cd6fb0044b35375c264d4e5e5c1ddc81b395
parentb8b2c52d84980f6132e6071dc879ac5e40b90880 (diff)
downloadlibayatana-indicator-53908231e04a6b04ff07bde18bc737079a83aa4f.tar.gz
libayatana-indicator-53908231e04a6b04ff07bde18bc737079a83aa4f.tar.bz2
libayatana-indicator-53908231e04a6b04ff07bde18bc737079a83aa4f.zip
Fixing the other signal marshallers
-rw-r--r--libindicate/server.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libindicate/server.c b/libindicate/server.c
index 95a5c3c..a3d3be8 100644
--- a/libindicate/server.c
+++ b/libindicate/server.c
@@ -198,7 +198,7 @@ indicate_server_class_init (IndicateServerClass * class)
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (IndicateServerClass, indicator_removed),
NULL, NULL,
- g_cclosure_marshal_VOID__UINT_POINTER,
+ _indicate_server_marshal_VOID__UINT_STRING,
G_TYPE_NONE, 2, G_TYPE_UINT, G_TYPE_STRING);
/**
IndicateServer::indicator-modified:
@@ -216,7 +216,7 @@ indicate_server_class_init (IndicateServerClass * class)
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (IndicateServerClass, indicator_modified),
NULL, NULL,
- g_cclosure_marshal_VOID__UINT_POINTER,
+ _indicate_server_marshal_VOID__UINT_STRING,
G_TYPE_NONE, 2, G_TYPE_UINT, G_TYPE_STRING);
/**
IndicateServer::server-show:
@@ -232,7 +232,7 @@ indicate_server_class_init (IndicateServerClass * class)
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (IndicateServerClass, server_show),
NULL, NULL,
- g_cclosure_marshal_VOID__POINTER,
+ g_cclosure_marshal_VOID__STRING,
G_TYPE_NONE, 1, G_TYPE_STRING);
/**
IndicateServer::server-hide:
@@ -247,7 +247,7 @@ indicate_server_class_init (IndicateServerClass * class)
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (IndicateServerClass, server_hide),
NULL, NULL,
- g_cclosure_marshal_VOID__POINTER,
+ g_cclosure_marshal_VOID__STRING,
G_TYPE_NONE, 1, G_TYPE_STRING);
/**
IndicateServer::server-display: