From: Stefan Csomor Date: Wed, 11 Oct 2006 16:10:12 +0000 (+0000) Subject: while gcc 4 works under xcode, 3.3. builds don't, therefore this workaround for sourc... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ee5c8f01f22c96f1bb84ec73fe02850adb79c784 while gcc 4 works under xcode, 3.3. builds don't, therefore this workaround for source relative includes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/richtext/richtextformatdlg.cpp b/src/richtext/richtextformatdlg.cpp index c7c392d20f..e262d0850a 100644 --- a/src/richtext/richtextformatdlg.cpp +++ b/src/richtext/richtextformatdlg.cpp @@ -46,11 +46,19 @@ #include "wx/richtext/richtextctrl.h" #include "wx/richtext/richtextstyles.h" +#ifdef __WXMAC__ +#include "../../src/richtext/richtextfontpage.cpp" +#include "../../src/richtext/richtextindentspage.cpp" +#include "../../src/richtext/richtexttabspage.cpp" +#include "../../src/richtext/richtextbulletspage.cpp" +#include "../../src/richtext/richtextstylepage.cpp" +#else #include "richtextfontpage.cpp" #include "richtextindentspage.cpp" #include "richtexttabspage.cpp" #include "richtextbulletspage.cpp" #include "richtextstylepage.cpp" +#endif #if 0 // def __WXMAC__ #define wxRICHTEXT_USE_TOOLBOOK true