diff options
author | crupest <crupest@outlook.com> | 2018-09-13 23:42:44 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-09-13 23:42:44 +0800 |
commit | da54cf6e1dd9ffbf1e57a8a3c19e41a8fcedf5b1 (patch) | |
tree | 59ab635a09bfb4fc219b243c920cd236dfa41010 /CruUI/ui/control.cpp | |
parent | 42f9f6c0bce5b3bea05edf4e371539fe21ea1c5d (diff) | |
download | cru-da54cf6e1dd9ffbf1e57a8a3c19e41a8fcedf5b1.tar.gz cru-da54cf6e1dd9ffbf1e57a8a3c19e41a8fcedf5b1.tar.bz2 cru-da54cf6e1dd9ffbf1e57a8a3c19e41a8fcedf5b1.zip |
...
Diffstat (limited to 'CruUI/ui/control.cpp')
-rw-r--r-- | CruUI/ui/control.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CruUI/ui/control.cpp b/CruUI/ui/control.cpp index 4d9f0593..c7864dc7 100644 --- a/CruUI/ui/control.cpp +++ b/CruUI/ui/control.cpp @@ -389,21 +389,21 @@ namespace cru { mouse_up_event.Raise(args); } - void Control::OnGetFocus(UiEventArgs & args) + void Control::OnGetFocus(FocusChangeEventArgs& args) { } - void Control::OnLoseFocus(UiEventArgs & args) + void Control::OnLoseFocus(FocusChangeEventArgs& args) { } - void Control::OnGetFocusCore(UiEventArgs & args) + void Control::OnGetFocusCore(FocusChangeEventArgs& args) { OnGetFocus(args); get_focus_event.Raise(args); } - void Control::OnLoseFocusCore(UiEventArgs & args) + void Control::OnLoseFocusCore(FocusChangeEventArgs& args) { OnLoseFocus(args); lose_focus_event.Raise(args); |