diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-12-10 21:39:53 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-12-10 21:39:53 +0000 |
commit | 14ee65b66a71fd8e9f873986305b78b135f0472c (patch) | |
tree | 9d6b1f93b0a4443bccb65397c06f20456feaf14e /gtk/gtklist.c | |
parent | 329c090ec18cf162db9d09b98f007f8979238116 (diff) | |
download | gdk-pixbuf-14ee65b66a71fd8e9f873986305b78b135f0472c.tar.gz |
Data constness fixes. (#75754)
Diffstat (limited to 'gtk/gtklist.c')
-rw-r--r-- | gtk/gtklist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtklist.c b/gtk/gtklist.c index a91ba5231..a234e3f39 100644 --- a/gtk/gtklist.c +++ b/gtk/gtklist.c @@ -168,9 +168,9 @@ static void gtk_list_drag_begin (GtkWidget *widget, static GtkContainerClass *parent_class = NULL; static guint list_signals[LAST_SIGNAL] = { 0 }; -static const gchar *vadjustment_key = "gtk-vadjustment"; +static const gchar vadjustment_key[] = "gtk-vadjustment"; static guint vadjustment_key_id = 0; -static const gchar *hadjustment_key = "gtk-hadjustment"; +static const gchar hadjustment_key[] = "gtk-hadjustment"; static guint hadjustment_key_id = 0; GtkType |