diff --git a/gtk/gtkhidingbox.c b/gtk/gtkhidingbox.c index 65de641614be4f6fe3520670624672406c40085a..d4edcfba9edbb1cf9873a4e21b5ec58a244e54de 100644 --- a/gtk/gtkhidingbox.c +++ b/gtk/gtkhidingbox.c @@ -350,23 +350,20 @@ gtk_hiding_box_get_preferred_height (GtkWidget *widget, { GtkHidingBox *box = GTK_HIDING_BOX (widget); GtkHidingBoxPrivate *priv = gtk_hiding_box_get_instance_private (box); - gint m, n; gint cm, cn; GList *child; - m = n = 0; + *min = 0; + *nat = 0; for (child = priv->children; child != NULL; child = child->next) { if (!gtk_widget_is_visible (child->data)) continue; gtk_widget_get_preferred_height (child->data, &cm, &cn); - m = MAX (m, cm); - n = MAX (n, cn); + *min = MAX (*min, cm); + *nat = MAX (*nat, cn); } - - *min = m; - *nat = n; } static void