diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2007-05-09 19:48:33 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-05-09 19:48:33 +0800 |
commit | beb301da43c57e64e781b7f5c69b2bc667f46b1d (patch) | |
tree | 32e373f5960cf673297b6162ccc039c25007e9aa /libempathy-gtk/gossip-chat.c | |
parent | 6c4424425443b85e2bc14ee430fb8ec78521b074 (diff) | |
download | gsoc2013-empathy-beb301da43c57e64e781b7f5c69b2bc667f46b1d.tar gsoc2013-empathy-beb301da43c57e64e781b7f5c69b2bc667f46b1d.tar.gz gsoc2013-empathy-beb301da43c57e64e781b7f5c69b2bc667f46b1d.tar.bz2 gsoc2013-empathy-beb301da43c57e64e781b7f5c69b2bc667f46b1d.tar.lz gsoc2013-empathy-beb301da43c57e64e781b7f5c69b2bc667f46b1d.tar.xz gsoc2013-empathy-beb301da43c57e64e781b7f5c69b2bc667f46b1d.tar.zst gsoc2013-empathy-beb301da43c57e64e781b7f5c69b2bc667f46b1d.zip |
[darcs-to-svn @ sync with Gossip SVN 2323]
svn path=/trunk/; revision=38
Diffstat (limited to 'libempathy-gtk/gossip-chat.c')
-rw-r--r-- | libempathy-gtk/gossip-chat.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libempathy-gtk/gossip-chat.c b/libempathy-gtk/gossip-chat.c index 614abd7d7..03f22514a 100644 --- a/libempathy-gtk/gossip-chat.c +++ b/libempathy-gtk/gossip-chat.c @@ -39,6 +39,7 @@ #include <libempathy/gossip-debug.h> #include <libempathy/gossip-utils.h> #include <libempathy/gossip-conf.h> +#include <libempathy/empathy-marshal.h> #include "gossip-chat.h" #include "gossip-chat-window.h" @@ -175,9 +176,9 @@ gossip_chat_class_init (GossipChatClass *klass) G_SIGNAL_RUN_LAST, 0, NULL, NULL, - g_cclosure_marshal_VOID__OBJECT, + empathy_marshal_VOID__OBJECT_BOOLEAN, G_TYPE_NONE, - 1, GOSSIP_TYPE_MESSAGE); + 2, GOSSIP_TYPE_MESSAGE, G_TYPE_BOOLEAN); chat_signals[NAME_CHANGED] = g_signal_new ("name-changed", @@ -403,7 +404,7 @@ chat_message_received_cb (EmpathyTpChat *tp_chat, // FIXME: gossip_sound_play (GOSSIP_SOUND_CHAT); } - g_signal_emit_by_name (chat, "new-message", message); + g_signal_emit_by_name (chat, "new-message", message, FALSE); } void |