Add a missing cast

This fixes a warning introduced in the previous commit.
This commit is contained in:
Matthias Clasen 2018-08-29 19:55:58 -04:00
parent 9622ba8a0d
commit b904fc6ee0

View File

@ -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;
}
}