From f420a7091817bd4e41a70e20250f6a4be34c71d9 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 20 Feb 2005 15:09:20 +0000 Subject: [PATCH] wxUniv compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32248 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/window.cpp b/src/msw/window.cpp index a5f8399a27..903d55ffcf 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -2321,7 +2321,7 @@ WXLRESULT wxWindowMSW::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM l #ifdef WM_PRINT case WM_PRINTCLIENT: if ( GetParent() && - GetParent()->MSWPrintChild(this, wParam, lParam) ) + GetParent()->MSWPrintChild((wxWindow *)this, wParam, lParam) ) { processed = true; } -- 2.45.2