LibGfx: Unpublish FloatRect from the global namespace

This commit is contained in:
Andreas Kling 2020-02-06 14:33:05 +01:00
commit 8505d8d15d
Notes: sideshowbarker 2024-07-19 09:34:25 +09:00
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);
}