]> git.saurik.com Git - wxWidgets.git/commitdiff
setting the current event record correctly (needed for control text handling)
authorStefan Csomor <csomor@advancedconcepts.ch>
Fri, 23 Aug 2002 14:16:55 +0000 (14:16 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Fri, 23 Aug 2002 14:16:55 +0000 (14:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16706 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/toplevel.cpp
src/mac/toplevel.cpp

index d2e8ee850978fde0e7018f20dcc6260b794f74f8..efcf1a737dbc511adf484459120a480d2ccde09f 100644 (file)
@@ -233,6 +233,7 @@ pascal OSStatus wxMacWindowEventHandler( EventHandlerCallRef handler , EventRef
         case kEventClassTextInput :
             if ( wxMacConvertEventToRecord( event , &rec ) )
             {
+                       wxTheApp->m_macCurrentEvent = &rec ;
                 wxWindow* focus = wxWindow::FindFocus() ;
                 if ( (focus != NULL) && wxTheApp->MacSendKeyDownEvent( focus , rec.message , rec.modifiers , rec.when , rec.where.h , rec.where.v ) )
                 {
index d2e8ee850978fde0e7018f20dcc6260b794f74f8..efcf1a737dbc511adf484459120a480d2ccde09f 100644 (file)
@@ -233,6 +233,7 @@ pascal OSStatus wxMacWindowEventHandler( EventHandlerCallRef handler , EventRef
         case kEventClassTextInput :
             if ( wxMacConvertEventToRecord( event , &rec ) )
             {
+                       wxTheApp->m_macCurrentEvent = &rec ;
                 wxWindow* focus = wxWindow::FindFocus() ;
                 if ( (focus != NULL) && wxTheApp->MacSendKeyDownEvent( focus , rec.message , rec.modifiers , rec.when , rec.where.h , rec.where.v ) )
                 {