container: Don't use to-be-deprecated API

Instead, do what that API does manually.
This commit is contained in:
Benjamin Otte 2013-05-30 20:02:05 +02:00
parent 1e8640f294
commit 299714dd1a

View File

@ -1870,7 +1870,8 @@ gtk_container_real_check_resize (GtkContainer *container)
}
else
{
gtk_container_resize_children (container);
gtk_widget_size_allocate (widget, &allocation);
gtk_widget_set_allocation (widget, &allocation);
}
}