diff options
author | James Booth <boothj5@gmail.com> | 2015-10-27 23:20:03 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-10-27 23:20:03 +0000 |
commit | e7148bf82d8a0e0c68cb794dbce7b2f70d3d0e55 (patch) | |
tree | dc58e2764905e588f2cec5c2f23686845ffb761c /src/otr | |
parent | af1124f28ffc95a09d88d1fad25c31554106acd7 (diff) | |
download | profani-tty-e7148bf82d8a0e0c68cb794dbce7b2f70d3d0e55.tar.gz |
Renamed ui_outgoing_chat_msg -> chatwin_outgoing_msg
Diffstat (limited to 'src/otr')
-rw-r--r-- | src/otr/otr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/otr/otr.c b/src/otr/otr.c index facfb4f7..68ea3e11 100644 --- a/src/otr/otr.c +++ b/src/otr/otr.c @@ -331,7 +331,7 @@ otr_on_message_send(ProfChatWin *chatwin, const char *const message) if (encrypted) { id = message_send_chat_otr(chatwin->barejid, encrypted); chat_log_otr_msg_out(chatwin->barejid, message); - ui_outgoing_chat_msg(chatwin, message, id, PROF_MSG_OTR); + chatwin_outgoing_msg(chatwin, message, id, PROF_MSG_OTR); otr_free_message(encrypted); free(id); return TRUE; @@ -351,7 +351,7 @@ otr_on_message_send(ProfChatWin *chatwin, const char *const message) if (policy == PROF_OTRPOLICY_OPPORTUNISTIC) { char *otr_tagged_msg = otr_tag_message(message); id = message_send_chat_otr(chatwin->barejid, otr_tagged_msg); - ui_outgoing_chat_msg(chatwin, message, id, PROF_MSG_PLAIN); + chatwin_outgoing_msg(chatwin, message, id, PROF_MSG_PLAIN); chat_log_msg_out(chatwin->barejid, message); free(otr_tagged_msg); free(id); |