diff options
author | James Booth <boothj5@gmail.com> | 2016-10-15 00:04:57 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-10-15 00:04:57 +0100 |
commit | 33b4b79f2e055ad5831bc428a3c98eaee5530b9e (patch) | |
tree | 1140c7fc21e7547d874efc5e65c105fe650d5532 /tests/unittests/ui | |
parent | 2f888979c511c9260062dee71ba1060a23aa52d0 (diff) | |
download | profani-tty-33b4b79f2e055ad5831bc428a3c98eaee5530b9e.tar.gz |
Add ch arg to win_printf_line
Diffstat (limited to 'tests/unittests/ui')
-rw-r--r-- | tests/unittests/ui/stub_ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/ui/stub_ui.c b/tests/unittests/ui/stub_ui.c index a4eb7e68..740ce951 100644 --- a/tests/unittests/ui/stub_ui.c +++ b/tests/unittests/ui/stub_ui.c @@ -521,7 +521,7 @@ void win_show_subwin(ProfWin *window) {} void win_refresh_without_subwin(ProfWin *window) {} void win_refresh_with_subwin(ProfWin *window) {} void win_printf(ProfWin *window, const char show_char, int pad_indent, GDateTime *timestamp, int flags, theme_item_t theme_item, const char * const from, const char * const message, ...) {} -void win_printf_line(ProfWin *window, theme_item_t theme_item, const char *const message, ...) {} +void win_printf_line(ProfWin *window, theme_item_t theme_item, const char ch, const char *const message, ...) {} char* win_get_title(ProfWin *window) { |