diff options
author | James Booth <boothj5@gmail.com> | 2015-11-01 18:42:42 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-11-01 18:42:42 +0000 |
commit | be4b07102cf0973091d11db44f9acd0135da36c7 (patch) | |
tree | ce16a734186ba57fba681d8a8a052f4aced91106 | |
parent | 4c42ce9701fa4df960a8b20d704ac611e4866dfa (diff) | |
download | profani-tty-be4b07102cf0973091d11db44f9acd0135da36c7.tar.gz |
Removed ui_input_clear()
-rw-r--r-- | src/ui/core.c | 6 | ||||
-rw-r--r-- | src/ui/ui.h | 1 | ||||
-rw-r--r-- | tests/unittests/ui/stub_ui.c | 1 |
3 files changed, 0 insertions, 8 deletions
diff --git a/src/ui/core.c b/src/ui/core.c index af395831..63e6e464 100644 --- a/src/ui/core.c +++ b/src/ui/core.c @@ -214,12 +214,6 @@ ui_subwin_page_down(void) } void -ui_input_clear(void) -{ - inp_win_clear(); -} - -void ui_input_nonblocking(gboolean reset) { inp_nonblocking(reset); diff --git a/src/ui/ui.h b/src/ui/ui.h index 388f37ed..5e9516d5 100644 --- a/src/ui/ui.h +++ b/src/ui/ui.h @@ -230,7 +230,6 @@ void ui_update_presence(const resource_presence_t resource_presence, const char *const message, const char *const show); void ui_statusbar_new(const int win); -void ui_input_clear(void); void ui_input_nonblocking(gboolean); void ui_write(char *line, int offset); diff --git a/tests/unittests/ui/stub_ui.c b/tests/unittests/ui/stub_ui.c index c71780bb..2f97dbdb 100644 --- a/tests/unittests/ui/stub_ui.c +++ b/tests/unittests/ui/stub_ui.c @@ -320,7 +320,6 @@ char* inp_readline(void) void ui_inp_history_append(char *inp) {} -void ui_input_clear(void) {} void ui_input_nonblocking(gboolean reset) {} void ui_invalid_command_usage(const char * const usage, void (*setting_func)(void)) {} |