diff options
author | James Booth <boothj5@gmail.com> | 2015-11-02 22:19:01 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-11-02 22:19:01 +0000 |
commit | 38255e9be49f390bb10daff83bbfe244fd0bdaec (patch) | |
tree | 7b27eade461820f0c66f0777190c9aa165313e48 /tests | |
parent | 9106029261cd48edbb6f020f920e1ff9a0ae62ce (diff) | |
download | profani-tty-38255e9be49f390bb10daff83bbfe244fd0bdaec.tar.gz |
Make all mucconfwin functions take ProfMucConfWin
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unittests/ui/stub_ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unittests/ui/stub_ui.c b/tests/unittests/ui/stub_ui.c index df8358cb..2d979af0 100644 --- a/tests/unittests/ui/stub_ui.c +++ b/tests/unittests/ui/stub_ui.c @@ -244,7 +244,7 @@ void ui_handle_error(const char * const err_msg) void ui_clear_win_title(void) {} void ui_goodbye_title(void) {} -void mucconfwin_handle_configuration(const char * const roomjid, DataForm *form) {} +void mucconfwin_handle_configuration(ProfMucConfWin *confwin, DataForm *form) {} void ui_handle_room_configuration_form_error(const char * const roomjid, const char * const message) {} void ui_handle_room_config_submit_result(const char * const roomjid) {} void ui_handle_room_config_submit_result_error(const char * const roomjid, const char * const message) {} @@ -258,7 +258,7 @@ void mucwin_role_list_error(ProfMucWin *mucwin, const char * const role, const c void mucwin_handle_role_list(ProfMucWin *mucwin, const char * const role, GSList *nicks) {} void mucwin_kick_error(ProfMucWin *mucwin, const char * const nick, const char * const error) {} void mucconfwin_show_form(ProfMucConfWin *confwin) {} -void mucconfwin_show_form_field(ProfWin *window, DataForm *form, char *tag) {} +void mucconfwin_show_form_field(ProfMucConfWin *confwin, DataForm *form, char *tag) {} void mucconfwin_form_help(ProfMucConfWin *confwin) {} void mucconfwin_field_help(ProfMucConfWin *confwin, char *tag) {} void ui_show_lines(ProfWin *window, const gchar** lines) {} |