From 977c766e2337fea238804b8d8b97659361391ed0 Mon Sep 17 00:00:00 2001 From: crupest Date: Mon, 24 Sep 2018 00:16:53 +0800 Subject: Develop basic function of textbox. --- CruUI/ui/control.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'CruUI/ui/control.cpp') 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); -- cgit v1.2.3