diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2013-05-24 21:29:47 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2013-05-24 21:29:47 +0800 |
commit | 06a14ea83b6f301eab4de9488df89838db4b2589 (patch) | |
tree | c3c1a79dbd46b21ca64644b5c28232e7312463b9 /src | |
parent | 7e2db943e0c9a6f5764504460e64ffec9bb87d67 (diff) | |
download | gsoc2013-empathy-06a14ea83b6f301eab4de9488df89838db4b2589.tar gsoc2013-empathy-06a14ea83b6f301eab4de9488df89838db4b2589.tar.gz gsoc2013-empathy-06a14ea83b6f301eab4de9488df89838db4b2589.tar.bz2 gsoc2013-empathy-06a14ea83b6f301eab4de9488df89838db4b2589.tar.lz gsoc2013-empathy-06a14ea83b6f301eab4de9488df89838db4b2589.tar.xz gsoc2013-empathy-06a14ea83b6f301eab4de9488df89838db4b2589.tar.zst gsoc2013-empathy-06a14ea83b6f301eab4de9488df89838db4b2589.zip |
new-chatroom-dialog: use tp_g_signal_connect_object()
https://bugzilla.gnome.org/show_bug.cgi?id=696151
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-new-chatroom-dialog.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/empathy-new-chatroom-dialog.c b/src/empathy-new-chatroom-dialog.c index 5de844bd4..58cc3fde5 100644 --- a/src/empathy-new-chatroom-dialog.c +++ b/src/empathy-new-chatroom-dialog.c @@ -506,12 +506,12 @@ new_room_list_cb (GObject *source, return; } - g_signal_connect (self->priv->room_list, "got-room", - G_CALLBACK (new_chatroom_dialog_got_room_cb), self); - g_signal_connect (self->priv->room_list, "failed", - G_CALLBACK (listing_failed_cb), self); - g_signal_connect (self->priv->room_list, "notify::listing", - G_CALLBACK (new_chatroom_dialog_listing_cb), self); + tp_g_signal_connect_object (self->priv->room_list, "got-room", + G_CALLBACK (new_chatroom_dialog_got_room_cb), self, 0); + tp_g_signal_connect_object (self->priv->room_list, "failed", + G_CALLBACK (listing_failed_cb), self, 0); + tp_g_signal_connect_object (self->priv->room_list, "notify::listing", + G_CALLBACK (new_chatroom_dialog_listing_cb), self, 0); if (gtk_expander_get_expanded (GTK_EXPANDER (self->priv->expander_browse))) { |