diff options
author | Paolo Borelli <pborelli@gnome.org> | 2010-07-14 22:23:14 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-07-15 22:42:07 +0200 |
commit | 0754f2d72fd5bda86253d548e895482e682f12e9 (patch) | |
tree | 9f5ad61d80bd403f59889fad59582a058e966452 /gtk/gtkbox.c | |
parent | 133f0744b9d8990861c58516824be0fc617173db (diff) | |
download | gtk+-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.c')
-rw-r--r-- | gtk/gtkbox.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gtk/gtkbox.c b/gtk/gtkbox.c index 899da0e1ef..f481607b67 100644 --- a/gtk/gtkbox.c +++ b/gtk/gtkbox.c @@ -829,7 +829,6 @@ gtk_box_pack (GtkBox *box, child_info->expand = expand ? TRUE : FALSE; child_info->fill = fill ? TRUE : FALSE; child_info->pack = pack_type; - child_info->is_secondary = FALSE; private->children = g_list_append (private->children, child_info); |