From: Paul Cornett Date: Sat, 24 Apr 2010 14:40:58 +0000 (+0000) Subject: non-pch build fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9a4a0807113308761fb01007c05f5b023a5ba0f2 non-pch build fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64128 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/menucmn.cpp b/src/common/menucmn.cpp index 0d2d14bf0a..dc9db4f268 100644 --- a/src/common/menucmn.cpp +++ b/src/common/menucmn.cpp @@ -529,7 +529,7 @@ wxWindow *wxMenuBase::GetInvokingWindow() const wxWindow *wxMenuBase::GetWindow() const { - return GetMenuBar() ? GetMenuBar()->GetFrame() : GetInvokingWindow(); + return GetMenuBar() ? (wxWindow*)GetMenuBar()->GetFrame() : GetInvokingWindow(); } // ----------------------------------------------------------------------------