non-pch build fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41786 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2006-10-09 07:36:26 +00:00
parent 528e5cf81a
commit 38b130853f
3 changed files with 10 additions and 3 deletions

View File

@@ -16,7 +16,9 @@
#if wxUSE_BOOKCTRL #if wxUSE_BOOKCTRL
#include "wx/bookctrl.h" #include "wx/dialog.h"
class WXDLLIMPEXP_CORE wxBookCtrlBase;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// wxPropertySheetDialog // wxPropertySheetDialog

View File

@@ -30,6 +30,7 @@
class WXDLLEXPORT wxNotebookEvent; class WXDLLEXPORT wxNotebookEvent;
class WXDLLIMPEXP_RICHTEXT wxRichTextFormattingDialog; class WXDLLIMPEXP_RICHTEXT wxRichTextFormattingDialog;
class WXDLLIMPEXP_CORE wxImageList;
/*! /*!
* Flags determining the pages to be created in the dialog * Flags determining the pages to be created in the dialog

View File

@@ -16,6 +16,7 @@
* Includes * Includes
*/ */
#include "wx/dialog.h"
#include "wx/vscroll.h" #include "wx/vscroll.h"
/*! /*!
@@ -23,7 +24,10 @@
*/ */
////@begin forward declarations ////@begin forward declarations
class wxSymbolListCtrl; class WXDLLIMPEXP_RICHTEXT wxSymbolListCtrl;
class WXDLLIMPEXP_CORE wxComboBox;
class WXDLLIMPEXP_CORE wxStaticText;
class WXDLLIMPEXP_CORE wxTextCtrl;
////@end forward declarations ////@end forward declarations
#ifndef __UNICODE__ #ifndef __UNICODE__
@@ -36,7 +40,7 @@ class wxSymbolListCtrl;
* Symbols * 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_TITLE _("Symbols")
#define SYMBOL_WXSYMBOLPICKERDIALOG_IDNAME ID_SYMBOLPICKERDIALOG #define SYMBOL_WXSYMBOLPICKERDIALOG_IDNAME ID_SYMBOLPICKERDIALOG
#define SYMBOL_WXSYMBOLPICKERDIALOG_SIZE wxSize(400, 300) #define SYMBOL_WXSYMBOLPICKERDIALOG_SIZE wxSize(400, 300)