diff options
author | James Booth <boothj5@gmail.com> | 2014-09-01 19:14:52 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-09-01 19:14:52 +0100 |
commit | bc3c4e09a194acba2f5947b62b8913d7311fb1cb (patch) | |
tree | 7313a3acc3db68bc4d78bef7be65963cd86f096d /tests/ui | |
parent | c73c4b20efef6d412d48be241b84f4374dacc4f7 (diff) | |
download | profani-tty-bc3c4e09a194acba2f5947b62b8913d7311fb1cb.tar.gz |
Always update UI in event loop, removed updates from rest of code
Diffstat (limited to 'tests/ui')
-rw-r--r-- | tests/ui/mock_ui.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/ui/mock_ui.c b/tests/ui/mock_ui.c index 2cfde09a..7108df56 100644 --- a/tests/ui/mock_ui.c +++ b/tests/ui/mock_ui.c @@ -133,11 +133,6 @@ void _stub_ui_handle_recipient_not_found(const char * const recipient, const cha } static -void _stub_ui_current_update_virtual(void) -{ -} - -static void _mock_ui_current_print_formatted_line(const char show_char, int attrs, const char * const msg, ...) { check_expected(show_char); @@ -272,12 +267,6 @@ stub_ui_handle_recipient_error(void) } void -stub_ui_current_update_virtual(void) -{ - ui_current_update_virtual = _stub_ui_current_update_virtual; -} - -void mock_ui_current_print_formatted_line(void) { ui_current_print_formatted_line = _mock_ui_current_print_formatted_line; |