diff options
author | James Booth <boothj5@gmail.com> | 2015-01-30 23:28:02 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-01-30 23:28:02 +0000 |
commit | 83bd207316037a8086f15f37c0e187a2ffba2e14 (patch) | |
tree | b4788d1a1b55f7bb5c6b83f0e76bc7aecdb34c2d /tests | |
parent | 2cdbfc7eb7d90ed286c6c5f432990166cdec0b93 (diff) | |
download | profani-tty-83bd207316037a8086f15f37c0e187a2ffba2e14.tar.gz |
Moved readline code to inputwin.c
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 6b9050c3..6127e4f0 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) {} -char * ui_readline(void) +gboolean ui_readline(void) { - return NULL; + return TRUE; } void ui_inp_history_append(char *inp) {} |