summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/GEvent.h
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibGUI/GEvent.h')
-rw-r--r--Libraries/LibGUI/GEvent.h2
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; }