aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/ansi_map_stat.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/ansi_map_stat.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/ansi_map_stat.c')
-rw-r--r--gtk/ansi_map_stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/ansi_map_stat.c b/gtk/ansi_map_stat.c
index 4f686d34a9..5a71cb6cef 100644
--- a/gtk/ansi_map_stat.c
+++ b/gtk/ansi_map_stat.c
@@ -62,7 +62,7 @@ typedef struct column_arrows {
typedef struct _my_columns_t {
guint32 value;
- gchar *strptr;
+ const gchar *strptr;
GtkJustification just;
} my_columns_t;
@@ -267,7 +267,7 @@ ansi_map_stat_gtk_win_destroy_cb(
static void
ansi_map_stat_gtk_win_create(
ansi_map_stat_dlg_t *dlg_p,
- char *title)
+ const char *title)
{
int i;
column_arrows *col_arrows;