forked from AuroraMiddleware/gtk
Add a missing cast
This fixes a warning introduced in the previous commit.
This commit is contained in:
parent
9622ba8a0d
commit
b904fc6ee0
@ -6092,7 +6092,7 @@ gtk_file_chooser_widget_get_default_size (GtkFileChooserEmbed *chooser_embed,
|
||||
{
|
||||
gtk_widget_get_preferred_size (priv->extra_align,
|
||||
&req, NULL);
|
||||
*default_height += gtk_box_get_spacing (priv->box) + req.height;
|
||||
*default_height += gtk_box_get_spacing (GTK_BOX (priv->box)) + req.height;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user