Deprecate direct access to public variables in GtkBox.

* gtk/gtkbox.h: Deprecate direct access through GSEAL().

svn path=/trunk/; revision=20489
This commit is contained in:
Tim Janik 2008-06-20 10:57:52 +00:00
parent acea4faf74
commit fe53ab75bb

View File

@ -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