From: Ryan Norton Date: Sat, 16 Apr 2005 21:42:17 +0000 (+0000) Subject: fixed for w/o expat X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/204d3530fd27ff7c6597d6895b9503a4ea700692 fixed for w/o expat git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33684 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/debugrpt.h b/include/wx/debugrpt.h index aa3787e1c7..0337633e9f 100644 --- a/include/wx/debugrpt.h +++ b/include/wx/debugrpt.h @@ -13,7 +13,7 @@ #include "wx/defs.h" -#if wxUSE_DEBUGREPORT +#if wxUSE_DEBUGREPORT && wxUSE_XML class WXDLLIMPEXP_XML wxXmlNode; diff --git a/src/generic/dbgrptg.cpp b/src/generic/dbgrptg.cpp index 52d43bae35..734054bfca 100644 --- a/src/generic/dbgrptg.cpp +++ b/src/generic/dbgrptg.cpp @@ -29,7 +29,7 @@ #include "wx/textctrl.h" #endif // WX_PRECOMP -#if wxUSE_DEBUGREPORT +#if wxUSE_DEBUGREPORT && wxUSE_XML #include "wx/debugrpt.h"