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/gtkselection.c | |
parent | 329c090ec18cf162db9d09b98f007f8979238116 (diff) | |
download | gdk-pixbuf-14ee65b66a71fd8e9f873986305b78b135f0472c.tar.gz |
Data constness fixes. (#75754)
Diffstat (limited to 'gtk/gtkselection.c')
-rw-r--r-- | gtk/gtkselection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkselection.c b/gtk/gtkselection.c index e0bf168a4..bd5ac12d5 100644 --- a/gtk/gtkselection.c +++ b/gtk/gtkselection.c @@ -156,7 +156,7 @@ static GList *current_incrs = NULL; static GList *current_selections = NULL; static GdkAtom gtk_selection_atoms[LAST_ATOM]; -static const char *gtk_selection_handler_key = "gtk-selection-handlers"; +static const char gtk_selection_handler_key[] = "gtk-selection-handlers"; /**************** * Target Lists * |