From: Vadim Zeitlin Date: Wed, 11 Jul 2012 11:42:28 +0000 (+0000) Subject: Fix compilation of newly added msw/evtloopconsole.cpp without PCH. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3c0ab45424e08e419c64151b304b833bf6a742b4?ds=inline Fix compilation of newly added msw/evtloopconsole.cpp without PCH. Include and "wx/log.h" explicitly when not using PCH. Closes #14475. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72025 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/evtloopconsole.cpp b/src/msw/evtloopconsole.cpp index f1538af277..ebef5d87fb 100644 --- a/src/msw/evtloopconsole.cpp +++ b/src/msw/evtloopconsole.cpp @@ -24,6 +24,11 @@ #pragma hdrstop #endif +#ifndef WX_PRECOMP + #include "wx/log.h" + #include "wx/msw/wrapwin.h" +#endif //WX_PRECOMP + #include "wx/evtloop.h" // ============================================================================