diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:11:38 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:11:38 +0800 |
commit | ed0e0cf4f678d9e3b13570d217d7960b5ffebdac (patch) | |
tree | e6fe1d7460329c64110a89d07a435b7501a4790f /libempathy-gtk/empathy-chat.c | |
parent | 86b1cd7924f9436c5060787b3025ff5b25679e82 (diff) | |
download | gsoc2013-empathy-ed0e0cf4f678d9e3b13570d217d7960b5ffebdac.tar gsoc2013-empathy-ed0e0cf4f678d9e3b13570d217d7960b5ffebdac.tar.gz gsoc2013-empathy-ed0e0cf4f678d9e3b13570d217d7960b5ffebdac.tar.bz2 gsoc2013-empathy-ed0e0cf4f678d9e3b13570d217d7960b5ffebdac.tar.lz gsoc2013-empathy-ed0e0cf4f678d9e3b13570d217d7960b5ffebdac.tar.xz gsoc2013-empathy-ed0e0cf4f678d9e3b13570d217d7960b5ffebdac.tar.zst gsoc2013-empathy-ed0e0cf4f678d9e3b13570d217d7960b5ffebdac.zip |
We can't use *_run_* API from dbus signal cb or method implementation. To avoid problems move the code to a g_idle cb.
svn path=/trunk/; revision=922
Diffstat (limited to 'libempathy-gtk/empathy-chat.c')
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index 3be3302f6..0328c4ee9 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -1537,9 +1537,9 @@ empathy_chat_init (EmpathyChat *chat) priv->sent_messages_index = -1; priv->mc = empathy_mission_control_new (); - dbus_g_proxy_connect_signal (DBUS_G_PROXY (priv->mc), "AccountStatusChanged", - G_CALLBACK (chat_status_changed_cb), - chat, NULL); + empathy_connect_to_account_status_changed (priv->mc, + G_CALLBACK (chat_status_changed_cb), + chat, NULL); /* Block events for some time to avoid having "has come online" or * "joined" messages. */ |