diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-06-09 01:00:12 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-06-09 01:00:12 +0800 |
commit | d8b89b20f13552d3bd1c658f3396714e24744ff6 (patch) | |
tree | c219b0ad966a2d4dc7b084b1990a1a3eaf8066b7 | |
parent | 874ed37ea70ee8f860f89356005e67ea996863d0 (diff) | |
download | gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.tar gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.tar.gz gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.tar.bz2 gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.tar.lz gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.tar.xz gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.tar.zst gsoc2013-empathy-d8b89b20f13552d3bd1c658f3396714e24744ff6.zip |
Fix build on 64bits arch. Fixes bug #444680 (Matej Cepl).
2007-06-08 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/gossip-chat.c: Fix build on 64bits arch.
Fixes bug #444680 (Matej Cepl).
svn path=/trunk/; revision=131
-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); } } |