summaryrefslogtreecommitdiff
path: root/gtk/gtkclist.c
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2002-12-10 21:39:53 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2002-12-10 21:39:53 +0000
commit14ee65b66a71fd8e9f873986305b78b135f0472c (patch)
tree9d6b1f93b0a4443bccb65397c06f20456feaf14e /gtk/gtkclist.c
parent329c090ec18cf162db9d09b98f007f8979238116 (diff)
downloadgtk+-14ee65b66a71fd8e9f873986305b78b135f0472c.tar.gz
Data constness fixes. (#75754)
Diffstat (limited to 'gtk/gtkclist.c')
-rw-r--r--gtk/gtkclist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkclist.c b/gtk/gtkclist.c
index adb6ef6cdb..86e895dff1 100644
--- a/gtk/gtkclist.c
+++ b/gtk/gtkclist.c
@@ -463,7 +463,7 @@ static void drag_dest_cell (GtkCList *clist,
static GtkContainerClass *parent_class = NULL;
static guint clist_signals[LAST_SIGNAL] = {0};
-static GtkTargetEntry clist_target_table = { "gtk-clist-drag-reorder", 0, 0};
+static const GtkTargetEntry clist_target_table = { "gtk-clist-drag-reorder", 0, 0};
GtkType
gtk_clist_get_type (void)