diff options
author | James Booth <boothj5@gmail.com> | 2017-01-20 21:03:55 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2017-01-20 21:03:55 +0000 |
commit | c8874cd2e0c7a62eff66cb19acd40e36750d1b50 (patch) | |
tree | 751cbd7e32d36f905196b9739658299891430992 /tests/unittests | |
parent | ab1441a25cbbbcced83f60587d43dc2432e8f09d (diff) | |
download | profani-tty-c8874cd2e0c7a62eff66cb19acd40e36750d1b50.tar.gz |
Allow chat prefix char to be set by plugins
Diffstat (limited to 'tests/unittests')
-rw-r--r-- | tests/unittests/ui/stub_ui.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unittests/ui/stub_ui.c b/tests/unittests/ui/stub_ui.c index 04c6300c..9ca9ab5e 100644 --- a/tests/unittests/ui/stub_ui.c +++ b/tests/unittests/ui/stub_ui.c @@ -69,6 +69,10 @@ void chatwin_otr_smp_event(ProfChatWin *chatwin, prof_otr_smp_event_t event, voi void chatwin_set_enctext(ProfChatWin *chatwin, const char *const enctext) {} void chatwin_unset_enctext(ProfChatWin *chatwin) {} +void chatwin_set_incoming_char(ProfChatWin *chatwin, const char *const ch) {} +void chatwin_unset_incoming_char(ProfChatWin *chatwin) {} +void chatwin_set_outgoing_char(ProfChatWin *chatwin, const char *const ch) {} +void chatwin_unset_outgoing_char(ProfChatWin *chatwin) {} void ui_sigwinch_handler(int sig) {} |