aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2007-09-21 21:22:52 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2007-09-21 21:22:52 +0800
commit6356348014d36c9bf521ad3fc0e2bd15b5c671a2 (patch)
tree94487c25de048f2d8e144c3a56c2b07d5510f12b /libempathy-gtk
parent3e0a179495bf3d1b5c2061f233f8cdc8e49a9444 (diff)
downloadgsoc2013-empathy-6356348014d36c9bf521ad3fc0e2bd15b5c671a2.tar
gsoc2013-empathy-6356348014d36c9bf521ad3fc0e2bd15b5c671a2.tar.gz
gsoc2013-empathy-6356348014d36c9bf521ad3fc0e2bd15b5c671a2.tar.bz2
gsoc2013-empathy-6356348014d36c9bf521ad3fc0e2bd15b5c671a2.tar.lz
gsoc2013-empathy-6356348014d36c9bf521ad3fc0e2bd15b5c671a2.tar.xz
gsoc2013-empathy-6356348014d36c9bf521ad3fc0e2bd15b5c671a2.tar.zst
gsoc2013-empathy-6356348014d36c9bf521ad3fc0e2bd15b5c671a2.zip
2007-09-21 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-chat.c: Move TP_CHANNEL_CHAT_STATE_PAUSED to the not typing case. Fixes bug #474603 (Cosimo Cecchi). git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@307 4ee84921-47dd-4033-b63a-18d7a039a3e4
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-chat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c
index af35b0334..c98cc12df 100644
--- a/libempathy-gtk/empathy-chat.c
+++ b/libempathy-gtk/empathy-chat.c
@@ -1103,6 +1103,7 @@ chat_state_changed_cb (EmpathyTpChat *tp_chat,
switch (state) {
case TP_CHANNEL_CHAT_STATE_GONE:
case TP_CHANNEL_CHAT_STATE_INACTIVE:
+ case TP_CHANNEL_CHAT_STATE_PAUSED:
case TP_CHANNEL_CHAT_STATE_ACTIVE:
/* Contact is not composing */
if (l) {
@@ -1111,7 +1112,6 @@ chat_state_changed_cb (EmpathyTpChat *tp_chat,
g_list_free1 (l);
}
break;
- case TP_CHANNEL_CHAT_STATE_PAUSED:
case TP_CHANNEL_CHAT_STATE_COMPOSING:
/* Contact is composing */
if (!l) {