diff options
author | Tomasz Wasilczyk <twasilczyk@pidgin.im> | 2014-05-23 09:20:34 +0200 |
---|---|---|
committer | Tomasz Wasilczyk <twasilczyk@pidgin.im> | 2014-05-23 09:20:34 +0200 |
commit | 8ec8c345e27fa18d995e7293cf2a18552b0c14da (patch) | |
tree | c00d5040165f442bca6269bfea628aa2cd98f0a5 /finch/gntpounce.c | |
parent | e13ed4bf0f9747118e5c399897ec2cb6d75c247c (diff) | |
download | pidgin-8ec8c345e27fa18d995e7293cf2a18552b0c14da.tar.gz |
Split PurpleMessage into incoming, outgoing and system
Diffstat (limited to 'finch/gntpounce.c')
-rw-r--r-- | finch/gntpounce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/finch/gntpounce.c b/finch/gntpounce.c index b6cc9f2ecf..6973359571 100644 --- a/finch/gntpounce.c +++ b/finch/gntpounce.c @@ -875,7 +875,7 @@ pounce_cb(PurplePounce *pounce, PurplePounceEvent events, void *data) if (im == NULL) im = purple_im_conversation_new(account, pouncee); - pmsg = purple_message_new(pouncee, message, PURPLE_MESSAGE_SEND); + pmsg = purple_message_new_outgoing(pouncee, message, 0); purple_serv_send_im(purple_account_get_connection(account), pmsg); purple_conversation_write_message(PURPLE_CONVERSATION(im), pmsg); } |