From 82a591c1386b309b462f17e6eef11657e32aaa3b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 19 Oct 2014 19:05:18 +0000 Subject: [PATCH] Fix for PCH-less build after wake up changes. Include wx/msw/private.h when not using PCH to get wxZeroMemory() (this makes it unnecessary to include wx/msw/wrapwin.h as it's already included by the other header). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78049 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/evtloopconsole.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/evtloopconsole.cpp b/src/msw/evtloopconsole.cpp index 59ea8f01f8..c0ba2716fa 100644 --- a/src/msw/evtloopconsole.cpp +++ b/src/msw/evtloopconsole.cpp @@ -25,7 +25,7 @@ #ifndef WX_PRECOMP #include "wx/log.h" - #include "wx/msw/wrapwin.h" + #include "wx/msw/private.h" #endif //WX_PRECOMP #include "wx/evtloop.h"