Pass value rather than address of ch during main loop

This commit is contained in:
James Booth
2015-01-14 23:54:46 +00:00
parent ee14e8d05e
commit a6160d52c6
4 changed files with 24 additions and 24 deletions

View File

@@ -61,7 +61,7 @@ void ui_close(void);
void ui_redraw(void);
void ui_resize(void);
GSList* ui_get_chat_recipients(void);
void ui_handle_special_keys(const wint_t * const ch, const int result);
void ui_handle_special_keys(const wint_t ch, const int result);
gboolean ui_switch_win(const int i);
void ui_next_win(void);
void ui_previous_win(void);