diff options
author | James Booth <boothj5@gmail.com> | 2015-01-15 22:21:24 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-01-15 22:21:24 +0000 |
commit | 82c986775d0ece765b483256c218e0c42c6b14fc (patch) | |
tree | fb0e2a41ad10457078f5ca0e23aa3ff097c395b8 /tests | |
parent | b43252a6b3d4302f63e4210f5f9445e8110a78e5 (diff) | |
download | profani-tty-82c986775d0ece765b483256c218e0c42c6b14fc.tar.gz |
Moved input to ui module, renamed ui_readline
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ui/stub_ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/stub_ui.c b/tests/ui/stub_ui.c index 6c2d889c..2c7cebf6 100644 --- a/tests/ui/stub_ui.c +++ b/tests/ui/stub_ui.c @@ -323,9 +323,9 @@ void ui_update_presence(const resource_presence_t resource_presence, void ui_about(void) {} void ui_statusbar_new(const int win) {} -gboolean ui_get_char(char *input) +char * ui_readline(void) { - return FALSE; + return NULL; } void ui_input_clear(void) {} |