Data constness fixes. (#75754)

This commit is contained in:
Matthias Clasen
2002-12-10 21:39:53 +00:00
parent 329c090ec1
commit 14ee65b66a
26 changed files with 180 additions and 42 deletions

View File

@ -87,10 +87,10 @@ enum {
TARGET_UTF8_STRING
};
static const gchar *request_contents_key = "gtk-request-contents";
static const gchar request_contents_key[] = "gtk-request-contents";
static GQuark request_contents_key_id = 0;
static const gchar *clipboards_owned_key = "gtk-clipboards-owned";
static const gchar clipboards_owned_key[] = "gtk-clipboards-owned";
static GQuark clipboards_owned_key_id = 0;
static GObjectClass *parent_class;