diff options
Diffstat (limited to 'gtk/gtkcheckmenuitem.h')
-rw-r--r-- | gtk/gtkcheckmenuitem.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkcheckmenuitem.h b/gtk/gtkcheckmenuitem.h index bb5509c5e0..0098b79b61 100644 --- a/gtk/gtkcheckmenuitem.h +++ b/gtk/gtkcheckmenuitem.h @@ -53,10 +53,10 @@ struct _GtkCheckMenuItem { GtkMenuItem menu_item; - guint GSEAL (active : 1); - guint GSEAL (always_show_toggle : 1); - guint GSEAL (inconsistent : 1); - guint GSEAL (draw_as_radio : 1); + guint GSEAL (active) : 1; + guint GSEAL (always_show_toggle) : 1; + guint GSEAL (inconsistent) : 1; + guint GSEAL (draw_as_radio) : 1; }; struct _GtkCheckMenuItemClass |