summaryrefslogtreecommitdiff
path: root/src/disco.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-11-04 14:39:15 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-11-04 15:03:20 +0000
commitab58b4e2ff174aa9d7807ce0ec59b3ec1364ad9b (patch)
tree05f02a3cb1c3deedc210fd5516605a829a1bce95 /src/disco.c
parentc30af9df790380a8ff14b132d2befe8f6b62b0b6 (diff)
Use GLib's simple (1-argument) signal marshallers
Diffstat (limited to 'src/disco.c')
-rw-r--r--src/disco.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/disco.c b/src/disco.c
index 1a9cc14d6..c743be6a3 100644
--- a/src/disco.c
+++ b/src/disco.c
@@ -138,7 +138,7 @@ gabble_disco_class_init (GabbleDiscoClass *gabble_disco_class)
G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
0,
NULL, NULL,
- gabble_marshal_VOID__POINTER,
+ g_cclosure_marshal_VOID__POINTER,
G_TYPE_NONE, 1, G_TYPE_POINTER);
signals[DONE] =
@@ -147,7 +147,7 @@ gabble_disco_class_init (GabbleDiscoClass *gabble_disco_class)
G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
0,
NULL, NULL,
- gabble_marshal_VOID__VOID,
+ g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
}