diff options
author | Tim Janik <timj@src.gnome.org> | 2008-06-20 10:57:52 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2008-06-20 10:57:52 +0000 |
commit | fe53ab75bb6de7bacd1ee2c212131eaf241bed5a (patch) | |
tree | 9c42863b60b73a5b1e425022760abbdc23884f5e /gtk/gtkbox.h | |
parent | acea4faf744a4cd4f6696ca330fbffa5dec9d93c (diff) | |
download | gtk+-fe53ab75bb6de7bacd1ee2c212131eaf241bed5a.tar.gz |
Deprecate direct access to public variables in GtkBox.
* gtk/gtkbox.h: Deprecate direct access through GSEAL().
svn path=/trunk/; revision=20489
Diffstat (limited to 'gtk/gtkbox.h')
-rw-r--r-- | gtk/gtkbox.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkbox.h b/gtk/gtkbox.h index 9e70836620..3110fa3a05 100644 --- a/gtk/gtkbox.h +++ b/gtk/gtkbox.h @@ -56,9 +56,9 @@ struct _GtkBox GtkContainer container; /*< public >*/ - GList *children; - gint16 spacing; - guint homogeneous : 1; + GList *GSEAL (children); + gint16 GSEAL (spacing); + guint GSEAL (homogeneous : 1); }; struct _GtkBoxClass |