diff options
author | James Booth <boothj5@gmail.com> | 2018-03-10 23:41:38 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2018-03-10 23:41:38 +0000 |
commit | 73b8d07a8026352565abe7c032c993098ecfa1c5 (patch) | |
tree | e2b80ede32a2bf5b52ab546a43f7192a50f6fe32 /tests/unittests/ui/stub_ui.c | |
parent | d152c48d6ff77460585ba65078b23de454754d9d (diff) | |
parent | b01dd7c48b3f693053ca2efcc2b0d345e29562cd (diff) | |
download | profani-tty-73b8d07a8026352565abe7c032c993098ecfa1c5.tar.gz |
Merge branch 'wider-tabs'
Diffstat (limited to 'tests/unittests/ui/stub_ui.c')
-rw-r--r-- | tests/unittests/ui/stub_ui.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/unittests/ui/stub_ui.c b/tests/unittests/ui/stub_ui.c index 51e8d84a..420653e1 100644 --- a/tests/unittests/ui/stub_ui.c +++ b/tests/unittests/ui/stub_ui.c @@ -448,6 +448,7 @@ void cons_autoconnect_setting(void) {} void cons_rooms_cache_setting(void) {} void cons_inpblock_setting(void) {} void cons_winpos_setting(void) {} +void cons_statusbar_setting(void) {} void cons_tray_setting(void) {} void cons_show_contact_online(PContact contact, Resource *resource, GDateTime *last_activity) @@ -466,8 +467,8 @@ void title_bar_set_presence(contact_presence_t presence) {} // status bar void status_bar_inactive(const int win) {} -void status_bar_active(const int win) {} -void status_bar_new(const int win) {} +void status_bar_active(const int win, win_type_t type, char *identifier) {} +void status_bar_new(const int win, win_type_t type, char *identifier) {} void status_bar_set_all_inactive(void) {} // roster window @@ -506,6 +507,11 @@ ProfWin* win_create_plugin(const char *const plugin_name, const char * const tag return NULL; } +char* win_get_tab_identifier(ProfWin *window) +{ + return NULL; +} + void win_update_virtual(ProfWin *window) {} void win_free(ProfWin *window) {} gboolean win_notify_remind(ProfWin *window) |