summaryrefslogtreecommitdiff
path: root/gtk/gtkbox.h
diff options
context:
space:
mode:
authorPaolo Borelli <pborelli@gnome.org>2010-07-14 22:23:14 +0200
committerJavier Jardón <jjardon@gnome.org>2010-07-15 22:42:07 +0200
commit0754f2d72fd5bda86253d548e895482e682f12e9 (patch)
tree9f5ad61d80bd403f59889fad59582a058e966452 /gtk/gtkbox.h
parent133f0744b9d8990861c58516824be0fc617173db (diff)
downloadgtk+-0754f2d72fd5bda86253d548e895482e682f12e9.tar.gz
Do not use GtkBoxChild in GtkButtonBox.
Do not store the is_secondary bit in the deprecated parent struct, use a simple flag on the object instead. Fixes bug #624367.
Diffstat (limited to 'gtk/gtkbox.h')
-rw-r--r--gtk/gtkbox.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk/gtkbox.h b/gtk/gtkbox.h
index e90648db29..568138766b 100644
--- a/gtk/gtkbox.h
+++ b/gtk/gtkbox.h
@@ -76,7 +76,6 @@ struct _GtkBoxClass
* being used as padding around the widget; set when packed, %TRUE by default.
* @pack: one of #GtkPackType indicating whether the child is packed with
* reference to the start (top/left) or end (bottom/right) of the GtkBox.
- * @is_secondary: %TRUE if the child is secondary
*
* The #GtkBoxChild holds a child widget of #GtkBox and describes how the child
* is to be packed into the #GtkBox. All fields of this #GtkBoxChild should be
@@ -96,7 +95,6 @@ struct _GtkBoxChild
guint expand : 1;
guint fill : 1;
guint pack : 1;
- guint is_secondary : 1;
};
#endif