From: Paul Cornett Date: Mon, 9 Oct 2006 07:36:26 +0000 (+0000) Subject: non-pch build fixes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/38b130853f3eaf4cc3af9a2f20c0cdc2e2dda20d non-pch build fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41786 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/generic/propdlg.h b/include/wx/generic/propdlg.h index 282a25072b..a7fbf3d9e9 100644 --- a/include/wx/generic/propdlg.h +++ b/include/wx/generic/propdlg.h @@ -16,7 +16,9 @@ #if wxUSE_BOOKCTRL -#include "wx/bookctrl.h" +#include "wx/dialog.h" + +class WXDLLIMPEXP_CORE wxBookCtrlBase; //----------------------------------------------------------------------------- // wxPropertySheetDialog diff --git a/include/wx/richtext/richtextformatdlg.h b/include/wx/richtext/richtextformatdlg.h index 234594ddb8..2fb9680281 100644 --- a/include/wx/richtext/richtextformatdlg.h +++ b/include/wx/richtext/richtextformatdlg.h @@ -30,6 +30,7 @@ class WXDLLEXPORT wxNotebookEvent; class WXDLLIMPEXP_RICHTEXT wxRichTextFormattingDialog; +class WXDLLIMPEXP_CORE wxImageList; /*! * Flags determining the pages to be created in the dialog diff --git a/include/wx/richtext/richtextsymboldlg.h b/include/wx/richtext/richtextsymboldlg.h index c72e3109bc..e9d5b7ff31 100644 --- a/include/wx/richtext/richtextsymboldlg.h +++ b/include/wx/richtext/richtextsymboldlg.h @@ -16,6 +16,7 @@ * Includes */ +#include "wx/dialog.h" #include "wx/vscroll.h" /*! @@ -23,7 +24,10 @@ */ ////@begin forward declarations -class wxSymbolListCtrl; +class WXDLLIMPEXP_RICHTEXT wxSymbolListCtrl; +class WXDLLIMPEXP_CORE wxComboBox; +class WXDLLIMPEXP_CORE wxStaticText; +class WXDLLIMPEXP_CORE wxTextCtrl; ////@end forward declarations #ifndef __UNICODE__ @@ -36,7 +40,7 @@ class wxSymbolListCtrl; * Symbols */ -#define SYMBOL_WXSYMBOLPICKERDIALOG_STYLE wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxCLOSE_BOX +#define SYMBOL_WXSYMBOLPICKERDIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxCLOSE_BOX) #define SYMBOL_WXSYMBOLPICKERDIALOG_TITLE _("Symbols") #define SYMBOL_WXSYMBOLPICKERDIALOG_IDNAME ID_SYMBOLPICKERDIALOG #define SYMBOL_WXSYMBOLPICKERDIALOG_SIZE wxSize(400, 300)