diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-06 13:08:32 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-06 13:08:32 +0100 |
commit | 9b87843af169b08f1b852da96f696004866783fe (patch) | |
tree | c5a7267ff44cc6a45ec39784e8ce34ea9774a96b /Libraries/LibGUI/GEvent.h | |
parent | 20cfd2a6bff8c469970651dd73ffee60ab0e5176 (diff) | |
download | serenity-9b87843af169b08f1b852da96f696004866783fe.zip |
LibGfx: Unpublish Gfx::Point from global namespace
Diffstat (limited to 'Libraries/LibGUI/GEvent.h')
-rw-r--r-- | Libraries/LibGUI/GEvent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGUI/GEvent.h b/Libraries/LibGUI/GEvent.h index bfff565bd4..a0b3650ef2 100644 --- a/Libraries/LibGUI/GEvent.h +++ b/Libraries/LibGUI/GEvent.h @@ -290,7 +290,7 @@ public: { } - Point position() const { return m_position; } + Gfx::Point position() const { return m_position; } int x() const { return m_position.x(); } int y() const { return m_position.y(); } MouseButton button() const { return m_button; } |