aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-chat.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2007-09-21 21:22:52 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2007-09-21 21:22:52 +0800
commitfad6f33cf1c3c3af5a93700601e09e8263f2ffba (patch)
tree94487c25de048f2d8e144c3a56c2b07d5510f12b /libempathy-gtk/empathy-chat.c
parentdf79acf5765374714dd018519152a203291f1e5a (diff)
downloadgsoc2013-empathy-fad6f33cf1c3c3af5a93700601e09e8263f2ffba.tar
gsoc2013-empathy-fad6f33cf1c3c3af5a93700601e09e8263f2ffba.tar.gz
gsoc2013-empathy-fad6f33cf1c3c3af5a93700601e09e8263f2ffba.tar.bz2
gsoc2013-empathy-fad6f33cf1c3c3af5a93700601e09e8263f2ffba.tar.lz
gsoc2013-empathy-fad6f33cf1c3c3af5a93700601e09e8263f2ffba.tar.xz
gsoc2013-empathy-fad6f33cf1c3c3af5a93700601e09e8263f2ffba.tar.zst
gsoc2013-empathy-fad6f33cf1c3c3af5a93700601e09e8263f2ffba.zip
Move TP_CHANNEL_CHAT_STATE_PAUSED to the not typing case. Fixes bug
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). svn path=/trunk/; revision=307
Diffstat (limited to 'libempathy-gtk/empathy-chat.c')
-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) {