From: Vadim Zeitlin Date: Sun, 9 Sep 2001 11:56:33 +0000 (+0000) Subject: wxUniv compilation fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e72aa7f5ac0347b1115ffce7eafa58ddc2936ebc?ds=sidebyside wxUniv compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11576 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 37fa15429c..cd2ca7448d 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -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