From ee5c8f01f22c96f1bb84ec73fe02850adb79c784 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Wed, 11 Oct 2006 16:10:12 +0000 Subject: [PATCH] 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 --- src/richtext/richtextformatdlg.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/richtext/richtextformatdlg.cpp b/src/richtext/richtextformatdlg.cpp index c7c392d..e262d08 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 -- 2.7.4