diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-10-13 15:53:24 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-10-13 15:53:24 +0800 |
commit | 783058f1c13019f20e076de5f771a289a85c31a6 (patch) | |
tree | 71e479e562ac8a669d0ed058ff060f348f3a19b5 /libempathy | |
parent | 4e64cf50143c1709a09f8302466a3566d70a2008 (diff) | |
download | gsoc2013-empathy-783058f1c13019f20e076de5f771a289a85c31a6.tar gsoc2013-empathy-783058f1c13019f20e076de5f771a289a85c31a6.tar.gz gsoc2013-empathy-783058f1c13019f20e076de5f771a289a85c31a6.tar.bz2 gsoc2013-empathy-783058f1c13019f20e076de5f771a289a85c31a6.tar.lz gsoc2013-empathy-783058f1c13019f20e076de5f771a289a85c31a6.tar.xz gsoc2013-empathy-783058f1c13019f20e076de5f771a289a85c31a6.tar.zst gsoc2013-empathy-783058f1c13019f20e076de5f771a289a85c31a6.zip |
rename chatroom_invalidated_cb to dispatcher_chatroom_invalidated_cb
svn path=/trunk/; revision=1537
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-dispatcher.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c index c59e613c6..6e3c2e4be 100644 --- a/libempathy/empathy-dispatcher.c +++ b/libempathy/empathy-dispatcher.c @@ -391,11 +391,11 @@ dispatcher_connection_invalidated_cb (TpConnection *connection, } } -static void chatroom_invalidated_cb (TpProxy *channel, - guint domain, - gint code, - gchar *message, - EmpathyChatroom *chatroom) +static void dispatcher_chatroom_invalidated_cb (TpProxy *channel, + guint domain, + gint code, + gchar *message, + EmpathyChatroom *chatroom) { EmpathyChatroomManager *mgr; mgr = empathy_chatroom_manager_new (); @@ -483,7 +483,7 @@ dispatcher_connection_new_channel_cb (TpConnection *connection, g_object_set (chatroom, "tp-channel", channel, NULL); g_signal_connect (channel, "invalidated", - G_CALLBACK (chatroom_invalidated_cb), chatroom); + G_CALLBACK (dispatcher_chatroom_invalidated_cb), chatroom); g_free (room_ids[0]); g_free (room_ids); |