summaryrefslogtreecommitdiff
path: root/gtk/gtkcsstypesprivate.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2012-12-01 18:01:39 +0100
committerBenjamin Otte <otte@redhat.com>2012-12-01 18:01:39 +0100
commit14604876358b451de417b319a21167304ec2c9e9 (patch)
tree3eee60fc07de3783fbc078527bf2111bb38e54b5 /gtk/gtkcsstypesprivate.h
parentd8306aaeb3376d6d11a05b46171300a2b5747606 (diff)
downloadgtk+-14604876358b451de417b319a21167304ec2c9e9.tar.gz
css: Fix order of enum
We switched around the order in gtkcssenumvalue.h, we need to switch this order, too. Otherwise the parsing code will go bonkers.
Diffstat (limited to 'gtk/gtkcsstypesprivate.h')
-rw-r--r--gtk/gtkcsstypesprivate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkcsstypesprivate.h b/gtk/gtkcsstypesprivate.h
index f2130de481..d792c3c03d 100644
--- a/gtk/gtkcsstypesprivate.h
+++ b/gtk/gtkcsstypesprivate.h
@@ -162,6 +162,9 @@ typedef enum /*< skip >*/ {
} GtkCssFillMode;
typedef enum /*< skip >*/ {
+ /* relative font sizes */
+ GTK_CSS_FONT_SIZE_SMALLER,
+ GTK_CSS_FONT_SIZE_LARGER,
/* absolute font sizes */
GTK_CSS_FONT_SIZE_XX_SMALL,
GTK_CSS_FONT_SIZE_X_SMALL,
@@ -169,10 +172,7 @@ typedef enum /*< skip >*/ {
GTK_CSS_FONT_SIZE_MEDIUM,
GTK_CSS_FONT_SIZE_LARGE,
GTK_CSS_FONT_SIZE_X_LARGE,
- GTK_CSS_FONT_SIZE_XX_LARGE,
- /* relative font sizes */
- GTK_CSS_FONT_SIZE_SMALLER,
- GTK_CSS_FONT_SIZE_LARGER
+ GTK_CSS_FONT_SIZE_XX_LARGE
} GtkCssFontSize;
/* for the order in arrays */