]> git.saurik.com Git - wxWidgets.git/commitdiff
wxUniv compilation fix
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 9 Sep 2001 11:56:33 +0000 (11:56 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 9 Sep 2001 11:56:33 +0000 (11:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11576 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/window.cpp

index 37fa15429cc76a64e213f8c195a65c9a47086f63..cd2ca7448d4496fa1d72cc6a0a8d97da2664f67f 100644 (file)
@@ -3088,7 +3088,7 @@ bool wxWindowMSW::HandleSetFocus(WXHWND hwnd)
 {
     // notify the parent keeping track of focus for the kbd navigation
     // purposes that we got it
-    wxChildFocusEvent eventFocus(this);
+    wxChildFocusEvent eventFocus((wxWindow *)this);
     (void)GetEventHandler()->ProcessEvent(eventFocus);
 
 #if wxUSE_CARET