aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/gossip-chat.c
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2007-05-09 19:48:33 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2007-05-09 19:48:33 +0800
commit50549ef5a4df1be5877e340c0fd86453532b8088 (patch)
tree32e373f5960cf673297b6162ccc039c25007e9aa /libempathy-gtk/gossip-chat.c
parent15ded1fc39d2ec6b0912a719f69bacf7d7581238 (diff)
downloadgsoc2013-empathy-50549ef5a4df1be5877e340c0fd86453532b8088.tar
gsoc2013-empathy-50549ef5a4df1be5877e340c0fd86453532b8088.tar.gz
gsoc2013-empathy-50549ef5a4df1be5877e340c0fd86453532b8088.tar.bz2
gsoc2013-empathy-50549ef5a4df1be5877e340c0fd86453532b8088.tar.lz
gsoc2013-empathy-50549ef5a4df1be5877e340c0fd86453532b8088.tar.xz
gsoc2013-empathy-50549ef5a4df1be5877e340c0fd86453532b8088.tar.zst
gsoc2013-empathy-50549ef5a4df1be5877e340c0fd86453532b8088.zip
[darcs-to-svn @ sync with Gossip SVN 2323]
git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@38 4ee84921-47dd-4033-b63a-18d7a039a3e4
Diffstat (limited to 'libempathy-gtk/gossip-chat.c')
-rw-r--r--libempathy-gtk/gossip-chat.c7
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