about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-07-04 00:41:29 +0100
committerJames Booth <boothj5@gmail.com>2016-07-04 00:41:29 +0100
commit71879a3f64f5f04cdceeedf0317175b2bab1701c (patch)
treed97c05b977718ef679892468e449a72972db99ae /src/ui
parent606a860bdc2fd93773405655be467064aa949cc6 (diff)
downloadprofani-tty-71879a3f64f5f04cdceeedf0317175b2bab1701c.tar.gz
Free plugins commands on quit
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/core.c2
-rw-r--r--src/ui/ui.h2
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);