From: Vadim Zeitlin Date: Sun, 27 Feb 2011 13:17:41 +0000 (+0000) Subject: Fix for PCH-less build in markup code. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1a6e6d5475884bf48d96a32c727ac0252f361a91 Fix for PCH-less build in markup code. Include wx/log.h to use wxLogDebug(). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67072 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/markupparser.cpp b/src/common/markupparser.cpp index 5701ee64fa..d9dcf452c7 100644 --- a/src/common/markupparser.cpp +++ b/src/common/markupparser.cpp @@ -25,6 +25,10 @@ #if wxUSE_MARKUP +#ifndef WX_PRECOMP + #include "wx/log.h" +#endif + #include "wx/private/markupparser.h" #include "wx/stack.h"