mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:28:12 +00:00
LibGfx: Unpublish FloatSize from the global namespace
This commit is contained in:
parent
8505d8d15d
commit
5c2028db24
3 changed files with 2 additions and 4 deletions
|
@ -39,7 +39,7 @@ public:
|
|||
float y() const { return rect().y(); }
|
||||
float width() const { return rect().width(); }
|
||||
float height() const { return rect().height(); }
|
||||
FloatSize size() const { return rect().size(); }
|
||||
Gfx::FloatSize size() const { return rect().size(); }
|
||||
FloatPoint position() const { return rect().location(); }
|
||||
|
||||
virtual HitTestResult hit_test(const Gfx::Point& position) const override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue