diff options
author | James Booth <boothj5@gmail.com> | 2016-07-04 00:41:29 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-07-04 00:41:29 +0100 |
commit | 71879a3f64f5f04cdceeedf0317175b2bab1701c (patch) | |
tree | d97c05b977718ef679892468e449a72972db99ae /src/ui | |
parent | 606a860bdc2fd93773405655be467064aa949cc6 (diff) | |
download | profani-tty-71879a3f64f5f04cdceeedf0317175b2bab1701c.tar.gz |
Free plugins commands on quit
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/core.c | 2 | ||||
-rw-r--r-- | src/ui/ui.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/core.c b/src/ui/core.c index 3a89008f..c687cba6 100644 --- a/src/ui/core.c +++ b/src/ui/core.c @@ -1230,7 +1230,7 @@ ui_handle_room_config_submit_result_error(const char *const roomjid, const char } void -ui_show_lines(ProfWin *window, const gchar** lines) +ui_show_lines(ProfWin *window, gchar** lines) { if (lines) { int i; diff --git a/src/ui/ui.h b/src/ui/ui.h index c15af910..5cf8cb31 100644 --- a/src/ui/ui.h +++ b/src/ui/ui.h @@ -110,7 +110,7 @@ void ui_goodbye_title(void); 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); -void ui_show_lines(ProfWin *window, const gchar** lines); +void ui_show_lines(ProfWin *window, gchar** lines); void ui_redraw_all_room_rosters(void); void ui_show_all_room_rosters(void); void ui_hide_all_room_rosters(void); |