ui_outgoing_chat_msg now takes ProfChatWin as argument

This commit is contained in:
James Booth
2015-05-04 00:55:43 +01:00
parent c3d2a7e937
commit ef54ff305e
5 changed files with 13 additions and 15 deletions

View File

@@ -70,7 +70,7 @@ cl_ev_send_msg(ProfChatWin *chatwin, const char * const msg)
#else
char *id = message_send_chat(chatwin->barejid, msg);
chat_log_msg_out(chatwin->barejid, msg);
ui_outgoing_chat_msg(chatwin->barejid, msg, id);
ui_outgoing_chat_msg(chatwin, msg, id);
free(id);
#endif
}