]> Pileus Git - ~andy/gtk/commitdiff
Deprecate direct access to public variables in GtkBox.
authorTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 10:57:52 +0000 (10:57 +0000)
committerTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 10:57:52 +0000 (10:57 +0000)
* gtk/gtkbox.h: Deprecate direct access through GSEAL().

svn path=/trunk/; revision=20489

gtk/gtkbox.h

index 9e70836620595ccffc373808e15720325ea6d291..3110fa3a05edb827e29ed026d47d9c26508e817e 100644 (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