diff options
author | crupest <crupest@outlook.com> | 2018-09-24 00:16:53 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-09-24 00:16:53 +0800 |
commit | 977c766e2337fea238804b8d8b97659361391ed0 (patch) | |
tree | ff3438e5b0517c52412cfa497d1d2a0ed314cf79 /CruUI/ui/control.cpp | |
parent | be84ddd03d3b59c0c27aa538d5ef5129f94d511c (diff) | |
download | cru-977c766e2337fea238804b8d8b97659361391ed0.tar.gz cru-977c766e2337fea238804b8d8b97659361391ed0.tar.bz2 cru-977c766e2337fea238804b8d8b97659361391ed0.zip |
Develop basic function of textbox.
Diffstat (limited to 'CruUI/ui/control.cpp')
-rw-r--r-- | CruUI/ui/control.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CruUI/ui/control.cpp b/CruUI/ui/control.cpp index eaf206ac..8aec8640 100644 --- a/CruUI/ui/control.cpp +++ b/CruUI/ui/control.cpp @@ -480,7 +480,7 @@ namespace cru { { } - void Control::OnChar(events::CharEvent& args) + void Control::OnChar(CharEventArgs& args) { } @@ -492,7 +492,7 @@ namespace cru { { } - void Control::OnCharCore(events::CharEvent& args) + void Control::OnCharCore(CharEventArgs& args) { } @@ -510,7 +510,7 @@ namespace cru { key_up_event.Raise(args); } - void Control::RaiseCharEvent(CharEvent& args) + void Control::RaiseCharEvent(CharEventArgs& args) { OnCharCore(args); OnChar(args); |