aboutsummaryrefslogtreecommitdiff
path: root/CruUI/ui/events/ui_event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CruUI/ui/events/ui_event.cpp')
-rw-r--r--CruUI/ui/events/ui_event.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/CruUI/ui/events/ui_event.cpp b/CruUI/ui/events/ui_event.cpp
deleted file mode 100644
index 59623bab..00000000
--- a/CruUI/ui/events/ui_event.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "ui_event.h"
-
-#include "ui/control.h"
-
-namespace cru
-{
- namespace ui
- {
- namespace events
- {
- Point MouseEventArgs::GetPoint(Control* control) const
- {
- if (point_.has_value())
- return control->AbsoluteToLocal(point_.value());
- return Point();
- }
- }
- }
-}