Fixed classes to call gtk_extended_layout_get_desired_size_again()

The previous patch removes the ambiguous gtk_widget_get_desired_size().
This commit is contained in:
Tristan Van Berkom
2010-04-06 02:55:07 -04:00
parent ef32192329
commit 68c38e0ffd
6 changed files with 24 additions and 24 deletions

View File

@ -307,9 +307,9 @@ gtk_box_get_desired_size (GtkExtendedLayout *layout,
GtkRequisition child_minimum_size;
GtkRequisition child_natural_size;
gtk_widget_get_desired_size (child->widget,
&child_minimum_size,
&child_natural_size);
gtk_extended_layout_get_desired_size (GTK_EXTENDED_LAYOUT (child->widget),
&child_minimum_size,
&child_natural_size);
if (private->orientation == GTK_ORIENTATION_HORIZONTAL)
{