diff options
author | James Booth <boothj5@gmail.com> | 2015-11-02 21:21:52 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-11-02 21:21:52 +0000 |
commit | 022d20bbdc69cc4831317ac3092310b86d8ca7d8 (patch) | |
tree | c9bbfa24e43cad6ff17299a41b2090dddb4eab51 /tests/unittests/ui | |
parent | 84adec83f970eeb0ff912ee016c69e48f2061550 (diff) | |
download | profani-tty-022d20bbdc69cc4831317ac3092310b86d8ca7d8.tar.gz |
Removed ui_clear_win
Diffstat (limited to 'tests/unittests/ui')
-rw-r--r-- | tests/unittests/ui/stub_ui.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/unittests/ui/stub_ui.c b/tests/unittests/ui/stub_ui.c index fbb060b2..6e205d14 100644 --- a/tests/unittests/ui/stub_ui.c +++ b/tests/unittests/ui/stub_ui.c @@ -139,8 +139,6 @@ int ui_win_unread(int index) return 0; } -void ui_clear_win(ProfWin *window) {} - char * ui_ask_password(void) { return mock_ptr_type(char *); @@ -505,6 +503,7 @@ void win_show_contact(ProfWin *window, PContact contact) {} void win_show_info(ProfWin *window, PContact contact) {} void win_println(ProfWin *window, int pad, const char * const message) {} void win_vprintln_ch(ProfWin *window, char ch, const char *const message, ...) {} +void win_clear(ProfWin *window) {} // desktop notifier actions void notifier_uninit(void) {} |