1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-02 22:32:12 +00:00

LibGfx: Unpublish FloatRect from the global namespace

This commit is contained in:
Andreas Kling 2020-02-06 14:33:05 +01:00
parent 418adf3e86
commit 8505d8d15d
8 changed files with 18 additions and 20 deletions

View file

@ -47,6 +47,6 @@ void LayoutListItem::layout()
append_child(*m_marker);
}
FloatRect marker_rect { x() - 8, y(), 4, height() };
Gfx::FloatRect marker_rect { x() - 8, y(), 4, height() };
m_marker->set_rect(marker_rect);
}