forked from AuroraMiddleware/gtk
box: Simplify some code
All out varibles in measure implementations must be non-null and -1 is the default value for the baseline parameters.
This commit is contained in:
parent
e763dac72e
commit
27c76db956
@ -1303,13 +1303,7 @@ gtk_box_measure (GtkWidget *widget,
|
||||
if (private->orientation != orientation)
|
||||
gtk_box_compute_size_for_opposing_orientation (box, for_size, minimum, natural, minimum_baseline, natural_baseline);
|
||||
else
|
||||
{
|
||||
if (minimum_baseline)
|
||||
*minimum_baseline = -1;
|
||||
if (natural_baseline)
|
||||
*natural_baseline = -1;
|
||||
gtk_box_compute_size_for_orientation (box, for_size, minimum, natural);
|
||||
}
|
||||
gtk_box_compute_size_for_orientation (box, for_size, minimum, natural);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user