diff options
author | James Booth <boothj5@gmail.com> | 2015-06-02 20:32:15 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-06-02 20:32:15 +0100 |
commit | 78a4446023660b94ad0d93f59aab3149c50b3868 (patch) | |
tree | d6187e4114ffe229fb71d976b1dd076fb75285b3 /unittests | |
parent | f278e0a466c3b7815f0575d37057397666218b28 (diff) | |
parent | f0f3a739f4f6963d9ed3300f4b9ef8116ec39ba3 (diff) | |
download | profani-tty-78a4446023660b94ad0d93f59aab3149c50b3868.tar.gz |
Merge branch 'master' into stabber-tests
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/ui/stub_ui.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/unittests/ui/stub_ui.c b/unittests/ui/stub_ui.c index bdee3453..0052bfc8 100644 --- a/unittests/ui/stub_ui.c +++ b/unittests/ui/stub_ui.c @@ -315,7 +315,9 @@ void ui_redraw_all_room_rosters(void) {} void ui_show_all_room_rosters(void) {} void ui_hide_all_room_rosters(void) {} -void ui_tidy_wins(void) {} +gboolean ui_tidy_wins(void) { + return TRUE; +} void ui_prune_wins(void) {} gboolean ui_swap_wins(int source_win, int target_win) { @@ -458,6 +460,7 @@ void cons_occupants_setting(void) {} void cons_roster_setting(void) {} void cons_presence_setting(void) {} void cons_wrap_setting(void) {} +void cons_winstidy_setting(void) {} void cons_time_setting(void) {} void cons_mouse_setting(void) {} void cons_statuses_setting(void) {} |