diff options
author | DebXWoody <stefan@debxwoody.de> | 2021-05-29 21:17:12 +0200 |
---|---|---|
committer | DebXWoody <stefan@debxwoody.de> | 2021-05-29 21:17:12 +0200 |
commit | b9af7152f91fce53ef16a228e860cad5f4db1b4c (patch) | |
tree | 79b1777ccf439e7d637ff28afe8f75710332825e /tests/unittests | |
parent | b0a89db1d64893c2c5f5261c4b790165b16a442f (diff) | |
download | profani-tty-b9af7152f91fce53ef16a228e860cad5f4db1b4c.tar.gz |
attention-flag - unittest - stub_ui
Diffstat (limited to 'tests/unittests')
-rw-r--r-- | tests/unittests/ui/stub_ui.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/unittests/ui/stub_ui.c b/tests/unittests/ui/stub_ui.c index dc36678b..578ebcda 100644 --- a/tests/unittests/ui/stub_ui.c +++ b/tests/unittests/ui/stub_ui.c @@ -210,6 +210,20 @@ ui_win_unread(int index) return 0; } +gboolean +ui_win_has_attention(int index) { + return FALSE; +} + +gboolean +win_has_attention(ProfWin* window){ + return FALSE; +} + +gboolean +win_toggle_attention(ProfWin* window){ + return FALSE; +} char* ui_ask_password(gboolean confirm) { @@ -828,6 +842,12 @@ void cons_show_wins(gboolean unread) { } + +void +cons_show_wins_attention() +{ +} + void cons_show_status(const char* const barejid) { |