aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/find_dlg.h
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-08-05 20:59:08 +0000
committerJörg Mayer <jmayer@loplof.de>2005-08-05 20:59:08 +0000
commit4e1f4b18abdec1658e835a77a9de8be87c965142 (patch)
tree0aeebf0f2c4ec7ea3813d2f0b9e10f3f77e851cd /gtk/find_dlg.h
parente6856b69f3ebf85a1a37cb7c7a508f2be41fb1fe (diff)
More char -> const char warning fixes.
Removed (very few) casts that only change the warning message but don't remove it (with gcc-4). svn path=/trunk/; revision=15227
Diffstat (limited to 'gtk/find_dlg.h')
-rw-r--r--gtk/find_dlg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/find_dlg.h b/gtk/find_dlg.h
index 41ddfe3c4c..46fc2cc1fb 100644
--- a/gtk/find_dlg.h
+++ b/gtk/find_dlg.h
@@ -63,6 +63,6 @@ extern void find_frame_with_filter(char *filter);
* @param filter the filter string
* @param backwards TRUE, if searching should be done backwards
*/
-extern void find_previous_next_frame_with_filter(char *filter, gboolean backwards);
+extern void find_previous_next_frame_with_filter(const char *filter, gboolean backwards);
#endif /* find_dlg.h */