diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libempathy-gtk/gossip-chat.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-06-08 Xavier Claessens <xclaesse@gmail.com> + + * libempathy-gtk/gossip-chat.c: Fix build on 64bits arch. + Fixes bug #444680 (Matej Cepl). + 2007-06-06 Xavier Claessens <xclaesse@gmail.com> * libempathy-gtk/empathy-contact-dialogs.glade: diff --git a/libempathy-gtk/gossip-chat.c b/libempathy-gtk/gossip-chat.c index 9658f56b8..80bfc17f0 100644 --- a/libempathy-gtk/gossip-chat.c +++ b/libempathy-gtk/gossip-chat.c @@ -1087,7 +1087,7 @@ chat_state_changed_cb (EmpathyTpChat *tp_chat, (!was_composing && priv->compositors)) { /* Composing state changed */ g_signal_emit (chat, signals[COMPOSING], 0, - (gboolean) priv->compositors); + priv->compositors != NULL); } } |