mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-16 21:50:34 +00:00
Revert "GtkGrid: Add a few NULL checks"
This reverts commit e215db6da2
.
We are actually requiring non-NULL out arguments here now.
This commit is contained in:
parent
ccfacb383c
commit
7fd307f881
@ -1127,11 +1127,8 @@ gtk_grid_request_sum (GtkGridRequest *request,
|
||||
nat -= linedata->spacing;
|
||||
}
|
||||
|
||||
if (minimum)
|
||||
*minimum = min;
|
||||
|
||||
if (natural)
|
||||
*natural = nat;
|
||||
*minimum = min;
|
||||
*natural = nat;
|
||||
}
|
||||
|
||||
/* Computes minimum and natural fields of lines.
|
||||
|
Loading…
Reference in New Issue
Block a user