diff options
author | Carlos Garcia Campos <carlosgc@gnome.org> | 2010-07-26 15:24:15 +0200 |
---|---|---|
committer | Carlos Garcia Campos <carlosgc@gnome.org> | 2010-08-05 09:51:15 +0200 |
commit | 76267f9d0621c07b13e56f6ffd93e942111dfbcf (patch) | |
tree | 0cb86a247286b243d39f30c039f62b3e0cc608eb /gtk/gtkbbox.c | |
parent | dcdb00adb4be64768583eb3f0d301a931d7694d4 (diff) | |
download | gtk+-76267f9d0621c07b13e56f6ffd93e942111dfbcf.tar.gz |
Add _gtk_box_get_children() internal function
https://bugzilla.gnome.org/show_bug.cgi?id=625300
Diffstat (limited to 'gtk/gtkbbox.c')
-rw-r--r-- | gtk/gtkbbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkbbox.c b/gtk/gtkbbox.c index 582e447046..1720d726b6 100644 --- a/gtk/gtkbbox.c +++ b/gtk/gtkbbox.c @@ -457,7 +457,7 @@ _gtk_button_box_child_requisition (GtkWidget *widget, nchildren = 0; nsecondaries = 0; - list = children = gtk_container_get_children (GTK_CONTAINER (bbox)); + list = children = _gtk_box_get_children (GTK_BOX (bbox)); needed_width = child_min_width; needed_height = child_min_height; ipad_w = ipad_x * 2; @@ -790,7 +790,7 @@ gtk_button_box_size_allocate (GtkWidget *widget, childspace = child_height + childspacing; } - list = children = gtk_container_get_children (GTK_CONTAINER (box)); + list = children = _gtk_box_get_children (GTK_BOX (box)); while (children) { |