From fe5816f08f6ca7b5b1e3c309cb8b4d874814aa25 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 22 Oct 2009 16:53:57 +0000 Subject: [PATCH] Compilation fix for PCH-less OS X build after wxFSW merge. Include wx/log.h explicitly as we use wxLogTrace(). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62479 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/osx/core/evtloop_cf.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/osx/core/evtloop_cf.cpp b/src/osx/core/evtloop_cf.cpp index a0e30982c4..94b0940ece 100644 --- a/src/osx/core/evtloop_cf.cpp +++ b/src/osx/core/evtloop_cf.cpp @@ -27,6 +27,10 @@ #if wxUSE_EVENTLOOP_SOURCE +#ifndef WX_PRECOMP + #include "wx/log.h" +#endif + #include "wx/evtloopsrc.h" #include "wx/scopedptr.h"