aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/controls/TextHostControlService.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/controls/TextHostControlService.hpp')
-rw-r--r--include/cru/ui/controls/TextHostControlService.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/cru/ui/controls/TextHostControlService.hpp b/include/cru/ui/controls/TextHostControlService.hpp
index 93b74d09..1bdf0509 100644
--- a/include/cru/ui/controls/TextHostControlService.hpp
+++ b/include/cru/ui/controls/TextHostControlService.hpp
@@ -161,18 +161,18 @@ class TextHostControlService : public Object {
void UpdateInputMethodPosition();
template <typename TArgs>
- void SetupOneHandler(event::RoutedEvent<TArgs>* (Control::*event)(),
+ void SetupOneHandler(events::RoutedEvent<TArgs>* (Control::*event)(),
void (TextHostControlService::*handler)(
- typename event::RoutedEvent<TArgs>::EventArgs)) {
+ typename events::RoutedEvent<TArgs>::EventArgs)) {
this->event_guard_ += (this->control_->*event)()->Bubble()->AddHandler(
std::bind(handler, this, std::placeholders::_1));
}
- void MouseMoveHandler(event::MouseEventArgs& args);
- void MouseDownHandler(event::MouseButtonEventArgs& args);
- void MouseUpHandler(event::MouseButtonEventArgs& args);
- void GainFocusHandler(event::FocusChangeEventArgs& args);
- void LoseFocusHandler(event::FocusChangeEventArgs& args);
+ void MouseMoveHandler(events::MouseEventArgs& args);
+ void MouseDownHandler(events::MouseButtonEventArgs& args);
+ void MouseUpHandler(events::MouseButtonEventArgs& args);
+ void GainFocusHandler(events::FocusChangeEventArgs& args);
+ void LoseFocusHandler(events::FocusChangeEventArgs& args);
void SetUpShortcuts();