aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/help_dlg.c
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/help_dlg.c
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/help_dlg.c')
-rw-r--r--gtk/help_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/help_dlg.c b/gtk/help_dlg.c
index dc34285e6c..91810117b5 100644
--- a/gtk/help_dlg.c
+++ b/gtk/help_dlg.c
@@ -223,7 +223,7 @@ gboolean topic_available(topic_action_e action) {
/*
* Open the help dialog and show a specific help page.
*/
-static void help_topic(gchar *topic) {
+static void help_topic(const gchar *topic) {
gchar *page_topic;
GtkWidget *help_nb;
GSList *help_page_ent;