From: Vadim Zeitlin Date: Mon, 28 Jun 1999 22:04:40 +0000 (+0000) Subject: wxGTK compile fixes for my wxMSW changes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9f3a38fcd5f464e46bf842ddc13d7f85f8773c57 wxGTK compile fixes for my wxMSW changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2923 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/dialog.h b/include/wx/dialog.h index e74ffcdeff..a14930b5b0 100644 --- a/include/wx/dialog.h +++ b/include/wx/dialog.h @@ -1,6 +1,9 @@ #ifndef _WX_DIALOG_H_BASE_ #define _WX_DIALOG_H_BASE_ +#include "wx/defs.h" +#include "wx/panel.h" + class WXDLLEXPORT wxDialogBase : public wxPanel { protected: diff --git a/include/wx/gtk/statline.h b/include/wx/gtk/statline.h index 8cbce8a565..e29e20d5d0 100644 --- a/include/wx/gtk/statline.h +++ b/include/wx/gtk/statline.h @@ -47,6 +47,4 @@ public: long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr ); }; -#endif // wxUSE_STATLINE - #endif // __GTKSTATICLINEH__ diff --git a/include/wx/gtk1/statline.h b/include/wx/gtk1/statline.h index 8cbce8a565..e29e20d5d0 100644 --- a/include/wx/gtk1/statline.h +++ b/include/wx/gtk1/statline.h @@ -47,6 +47,4 @@ public: long style = wxLI_HORIZONTAL, const wxString &name = wxStaticTextNameStr ); }; -#endif // wxUSE_STATLINE - #endif // __GTKSTATICLINEH__ diff --git a/src/common/dlgcmn.cpp b/src/common/dlgcmn.cpp index c708a96e25..b7afa8ae6f 100644 --- a/src/common/dlgcmn.cpp +++ b/src/common/dlgcmn.cpp @@ -33,7 +33,9 @@ #ifndef WX_PRECOMP #include "wx/dialog.h" #include "wx/dcclient.h" + #include "wx/intl.h" #include "wx/settings.h" + #include "wx/stattext.h" #endif // ----------------------------------------------------------------------------