Call the ->get_desired_size() method directly on the vtable

This commit is a mistake, it should have been included with the last
commit.
This commit is contained in:
Tristan Van Berkom 2010-04-06 02:53:51 -04:00
parent 92309019e5
commit ef32192329

View File

@ -678,9 +678,11 @@ do_size_request (GtkWidget *widget)
*/
extended_minimum.width = 0;
extended_minimum.height = 0;
gtk_extended_layout_get_desired_size (GTK_EXTENDED_LAYOUT (widget),
&extended_minimum,
&aux_info->natural_size);
GTK_EXTENDED_LAYOUT_GET_IFACE
(widget)->get_desired_size (GTK_EXTENDED_LAYOUT (widget),
&extended_minimum,
&aux_info->natural_size);
/* Base the base widget requisition on both the size-requst and the extended layout size
*/