]> git.saurik.com Git - wxWidgets.git/commitdiff
use ProcessEventHere() instead of ProcessEvent() in TryValidator() to avoid passing...
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 22 Sep 2008 00:34:14 +0000 (00:34 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 22 Sep 2008 00:34:14 +0000 (00:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55787 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/wincmn.cpp

index 1a70ba68878bebfbdf95947b606f02ab7aa682ac..03e49a2a0c49e9461eb0cd78e6abbc223b5110a8 100644 (file)
@@ -2747,8 +2747,8 @@ bool wxWindowBase::TryValidator(wxEvent& wxVALIDATOR_PARAM(event))
     // is receiving the event
     if ( event.GetEventObject() == this )
     {
-        wxValidator *validator = GetValidator();
-        if ( validator && validator->ProcessEvent(event) )
+        wxValidator * const validator = GetValidator();
+        if ( validator && validator->ProcessEventHere(event) )
         {
             return true;
         }