about summary refs log tree commit diff stats
path: root/src/ui/chatwin.c
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2020-02-13 11:48:11 +0100
committerMichael Vetter <jubalh@iodoru.org>2020-02-14 10:17:07 +0100
commit3e901aee996c702c3be063fd155c4be951db5d53 (patch)
treea4632ca2e00468126c1b0da778f1a05626c59847 /src/ui/chatwin.c
parent3a1be74e9389d3e161f196e7402bbdff783cb0ee (diff)
downloadprofani-tty-3e901aee996c702c3be063fd155c4be951db5d53.tar.gz
Rename win_print_with_receipt() -> win_print_outgoing_with_receipt()
Diffstat (limited to 'src/ui/chatwin.c')
-rw-r--r--src/ui/chatwin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/chatwin.c b/src/ui/chatwin.c
index 5606e5a0..bb651e5f 100644
--- a/src/ui/chatwin.c
+++ b/src/ui/chatwin.c
@@ -327,7 +327,7 @@ chatwin_outgoing_msg(ProfChatWin *chatwin, const char *const message, char *id,
 
     if (request_receipt && id) {
         //TODO: replace_id and id
-        win_print_with_receipt((ProfWin*)chatwin, enc_char, "me", message, id);
+        win_print_outgoing_with_receipt((ProfWin*)chatwin, enc_char, "me", message, id);
     } else {
         win_print_outgoing((ProfWin*)chatwin, enc_char, id, replace_id, "%s", message);
     }