summaryrefslogtreecommitdiff
path: root/gtk/gtktogglebutton.h
diff options
context:
space:
mode:
authorTim Janik <timj@src.gnome.org>2008-06-20 11:01:45 +0000
committerTim Janik <timj@src.gnome.org>2008-06-20 11:01:45 +0000
commit891fba9dc8b5cd273e58ff7533ab5133a2ef9857 (patch)
tree0298b49ffc4dd56be29576b89fde338643380d54 /gtk/gtktogglebutton.h
parent1a52d49b15fec448c2c52811b047d9cb73269876 (diff)
downloadgtk+-891fba9dc8b5cd273e58ff7533ab5133a2ef9857.tar.gz
Seal GtkToggleButton.
* gtk/gtktogglebutton.h: Seal all member fields. svn path=/trunk/; revision=20532
Diffstat (limited to 'gtk/gtktogglebutton.h')
-rw-r--r--gtk/gtktogglebutton.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtktogglebutton.h b/gtk/gtktogglebutton.h
index 5f71653873..f9ca07e41b 100644
--- a/gtk/gtktogglebutton.h
+++ b/gtk/gtktogglebutton.h
@@ -52,9 +52,9 @@ struct _GtkToggleButton
{
GtkButton button;
- guint active : 1;
- guint draw_indicator : 1;
- guint inconsistent : 1;
+ guint GSEAL (active : 1);
+ guint GSEAL (draw_indicator : 1);
+ guint GSEAL (inconsistent : 1);
};
struct _GtkToggleButtonClass