about summary refs log tree commit diff stats
path: root/src/config/preferences.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-02-04 00:21:38 +0000
committerJames Booth <boothj5@gmail.com>2016-02-04 00:21:38 +0000
commit834226560707358c47d85d16bd85a49e218ef2d8 (patch)
treea783a5d55a168ab72099e1f85bb274f65f8a8fbf /src/config/preferences.h
parentbab75cae155b9a6b55afe404f674b7edc3eb8fa1 (diff)
downloadprofani-tty-834226560707358c47d85d16bd85a49e218ef2d8.tar.gz
Removed unused arg: prefs_do_chat_notify()
Diffstat (limited to 'src/config/preferences.h')
-rw-r--r--src/config/preferences.h2
1 files changed, 1 insertions, 1 deletions
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);
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243