diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-04-12 12:30:36 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-04-12 12:30:36 -0400 |
commit | ea936d42373e267467409bad681d8cd4d6cc6b15 (patch) | |
tree | d9668e34db84a683590602a5e003e7d0113c9995 /gtk/gtkcellrendererpixbuf.c | |
parent | 92f1f0c11810cfbd751ae8d20b78d2d61a04733b (diff) | |
download | gtk+-ea936d42373e267467409bad681d8cd4d6cc6b15.tar.gz |
GtkCellRendererPixbufPrivate: Improve struct packing
Diffstat (limited to 'gtk/gtkcellrendererpixbuf.c')
-rw-r--r-- | gtk/gtkcellrendererpixbuf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcellrendererpixbuf.c b/gtk/gtkcellrendererpixbuf.c index f50b3aeee9..8c222ffea1 100644 --- a/gtk/gtkcellrendererpixbuf.c +++ b/gtk/gtkcellrendererpixbuf.c @@ -88,14 +88,14 @@ enum { struct _GtkCellRendererPixbufPrivate { - GtkIconSize stock_size; - GdkPixbuf *pixbuf; GdkPixbuf *pixbuf_expander_open; GdkPixbuf *pixbuf_expander_closed; GIcon *gicon; + GtkIconSize stock_size; + gboolean follow_state; gchar *stock_id; |