1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:47:35 +00:00

LibWeb: Remove boxes_to_place from GridFormattingContext class members

Make it local variable in place_grid_items() instead.
This commit is contained in:
Aliaksandr Kalenik 2023-08-09 14:52:44 +02:00 committed by Andreas Kling
parent bf4e2f3e9c
commit 0a4b869233
2 changed files with 12 additions and 12 deletions

View file

@ -216,7 +216,6 @@ private:
OccupationGrid m_occupation_grid;
Vector<GridItem> m_grid_items;
Vector<JS::NonnullGCPtr<Box const>> m_boxes_to_place;
Optional<AvailableSpace> m_available_space;