about summary refs log tree commit diff stats
path: root/src/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/config')
-rw-r--r--src/config/preferences.c2
-rw-r--r--src/config/preferences.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/config/preferences.c b/src/config/preferences.c
index 36f3df38..d0506e06 100644
--- a/src/config/preferences.c
+++ b/src/config/preferences.c
@@ -192,7 +192,7 @@ prefs_reset_room_trigger_ac(void)
 }
 
 gboolean
-prefs_do_chat_notify(gboolean current_win, const char *const message)
+prefs_do_chat_notify(gboolean current_win)
 {
     gboolean notify_current = prefs_get_boolean(PREF_NOTIFY_CHAT_CURRENT);
     gboolean notify_window = FALSE;
diff --git a/src/config/preferences.h b/src/config/preferences.h
index 5bb219b1..baf43953 100644
--- a/src/config/preferences.h
+++ b/src/config/preferences.h
@@ -231,7 +231,7 @@ char* prefs_get_string(preference_t pref);
 void prefs_free_string(char *pref);
 void prefs_set_string(preference_t pref, char *value);
 
-gboolean prefs_do_chat_notify(gboolean current_win, const char *const message);
+gboolean prefs_do_chat_notify(gboolean current_win);
 gboolean prefs_do_room_notify(gboolean current_win, const char *const roomjid, const char *const nick,
     const char *const message, gboolean mention, gboolean trigger_found);
 GList* prefs_message_get_triggers(const char *const message);