diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2005-11-17 14:57:24 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-11-17 14:57:24 +0000 |
commit | 9b593427aab6bb5bd63bd7d657e871c66bf1704a (patch) | |
tree | 07025be116029ed4745df8c48d925bdc8a1b93df /modules | |
parent | 81be0b4311765c54dedfa16079444b844ef5cf8b (diff) | |
download | gtk+-9b593427aab6bb5bd63bd7d657e871c66bf1704a.tar.gz |
const correctness fixes
found by Arjan van de Ven and gcc.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/engines/pixbuf/ChangeLog | 5 | ||||
-rw-r--r-- | modules/engines/pixbuf/pixbuf-rc-style.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/modules/engines/pixbuf/ChangeLog b/modules/engines/pixbuf/ChangeLog index 60b3260eb8..fd72931d10 100644 --- a/modules/engines/pixbuf/ChangeLog +++ b/modules/engines/pixbuf/ChangeLog @@ -1,3 +1,8 @@ +2005-11-17 Matthias Clasen <mclasen@redhat.com> + + * pixbuf-rc-style.c: const correctness fixes + found by Arjan van de Ven and gcc. + 2005-08-24 Matthias Clasen <mclasen@redhat.com> * === Released 2.8.2 === diff --git a/modules/engines/pixbuf/pixbuf-rc-style.c b/modules/engines/pixbuf/pixbuf-rc-style.c index ef93363cee..e688927c58 100644 --- a/modules/engines/pixbuf/pixbuf-rc-style.c +++ b/modules/engines/pixbuf/pixbuf-rc-style.c @@ -36,7 +36,7 @@ static GtkStyle *pixbuf_rc_style_create_style (GtkRcStyle *rc_style); static void theme_image_unref (ThemeImage *data); -static struct +static const struct { gchar *name; guint token; |