Rename win_print_with_receipt() -> win_print_outgoing_with_receipt()

This commit is contained in:
Michael Vetter
2020-02-13 11:48:11 +01:00
parent 3a1be74e93
commit 3e901aee99
3 changed files with 4 additions and 4 deletions

View File

@@ -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);
}