From: Vadim Zeitlin Date: Thu, 22 Oct 2009 16:53:57 +0000 (+0000) Subject: Compilation fix for PCH-less OS X build after wxFSW merge. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fe5816f08f6ca7b5b1e3c309cb8b4d874814aa25 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 --- 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"