From c40691a0644cb0e08ec2c0cb7cda1c10b5a84e1b Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Fri, 16 Sep 2005 18:25:44 +0000 Subject: [PATCH] angle bracket problem fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35523 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/samples/stc/defsext.h | 4 ++-- contrib/samples/stc/edit.cpp | 8 ++++---- contrib/samples/stc/edit.h | 2 +- contrib/samples/stc/prefs.cpp | 5 ++--- contrib/samples/stc/prefs.h | 5 ++--- contrib/samples/stc/stctest.cpp | 2 +- samples/stc/defsext.h | 4 ++-- samples/stc/edit.cpp | 8 ++++---- samples/stc/edit.h | 2 +- samples/stc/prefs.cpp | 5 ++--- samples/stc/prefs.h | 5 ++--- samples/stc/stctest.cpp | 2 +- 12 files changed, 24 insertions(+), 28 deletions(-) diff --git a/contrib/samples/stc/defsext.h b/contrib/samples/stc/defsext.h index 0493c980e3..e7428b7da5 100644 --- a/contrib/samples/stc/defsext.h +++ b/contrib/samples/stc/defsext.h @@ -16,8 +16,8 @@ //---------------------------------------------------------------------------- //! wxWidgets headers -#include // printing support -#include // printing dialog +#include "wx/print.h" // printing support +#include "wx/printdlg.h" // printing dialog //============================================================================ diff --git a/contrib/samples/stc/edit.cpp b/contrib/samples/stc/edit.cpp index a3b7d7c236..7a166bbcdd 100644 --- a/contrib/samples/stc/edit.cpp +++ b/contrib/samples/stc/edit.cpp @@ -18,7 +18,7 @@ //---------------------------------------------------------------------------- // For compilers that support precompilation, includes . -#include +#include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop @@ -27,12 +27,12 @@ // for all others, include the necessary headers (this file is usually all you // need because it includes almost all 'standard' wxWidgets headers) #ifndef WX_PRECOMP - #include + #include "wx/wx.h" #endif //! wxWidgets headers -#include // raw file io support -#include // filename support +#include "wx/file.h" // raw file io support +#include "wx/filename.h" // filename support //! application headers #include "defsext.h" // additional definitions diff --git a/contrib/samples/stc/edit.h b/contrib/samples/stc/edit.h index fb4f44989b..4a7ecf79d1 100644 --- a/contrib/samples/stc/edit.h +++ b/contrib/samples/stc/edit.h @@ -23,7 +23,7 @@ //! wxWidgets headers //! wxWidgets/contrib headers -#include // styled text control +#include "wx/stc/stc.h" // styled text control //! application headers #include "prefs.h" // preferences diff --git a/contrib/samples/stc/prefs.cpp b/contrib/samples/stc/prefs.cpp index 15f8c0b46c..2e86866940 100644 --- a/contrib/samples/stc/prefs.cpp +++ b/contrib/samples/stc/prefs.cpp @@ -13,7 +13,7 @@ //---------------------------------------------------------------------------- // For compilers that support precompilation, includes . -#include +#include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop @@ -22,7 +22,7 @@ // for all others, include the necessary headers (this file is usually all you // need because it includes almost all 'standard' wxWidgets headers) #ifndef WX_PRECOMP - #include + #include "wx/wx.h" #endif //! wxWidgets headers @@ -376,4 +376,3 @@ const StyleInfo g_StylePrefs [] = { }; const int g_StylePrefsSize = WXSIZEOF(g_StylePrefs); - diff --git a/contrib/samples/stc/prefs.h b/contrib/samples/stc/prefs.h index b17ad6de7e..4ac01745e3 100644 --- a/contrib/samples/stc/prefs.h +++ b/contrib/samples/stc/prefs.h @@ -1,4 +1,4 @@ - ////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////// // File: prefs.h // Purpose: STC test Preferences initialization // Maintainer: Wyo @@ -23,7 +23,7 @@ //! wxWidgets headers //! wxWidgets/contrib headers -#include // styled text control +#include "wx/stc/stc.h" // styled text control //! application headers @@ -150,4 +150,3 @@ extern const StyleInfo g_StylePrefs[]; extern const int g_StylePrefsSize; #endif // _PREFS_H_ - diff --git a/contrib/samples/stc/stctest.cpp b/contrib/samples/stc/stctest.cpp index ea4c90a706..35b8a01121 100644 --- a/contrib/samples/stc/stctest.cpp +++ b/contrib/samples/stc/stctest.cpp @@ -13,7 +13,7 @@ //---------------------------------------------------------------------------- // For compilers that support precompilation, includes . -#include +#include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop diff --git a/samples/stc/defsext.h b/samples/stc/defsext.h index 0493c980e3..e7428b7da5 100644 --- a/samples/stc/defsext.h +++ b/samples/stc/defsext.h @@ -16,8 +16,8 @@ //---------------------------------------------------------------------------- //! wxWidgets headers -#include // printing support -#include // printing dialog +#include "wx/print.h" // printing support +#include "wx/printdlg.h" // printing dialog //============================================================================ diff --git a/samples/stc/edit.cpp b/samples/stc/edit.cpp index a3b7d7c236..7a166bbcdd 100644 --- a/samples/stc/edit.cpp +++ b/samples/stc/edit.cpp @@ -18,7 +18,7 @@ //---------------------------------------------------------------------------- // For compilers that support precompilation, includes . -#include +#include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop @@ -27,12 +27,12 @@ // for all others, include the necessary headers (this file is usually all you // need because it includes almost all 'standard' wxWidgets headers) #ifndef WX_PRECOMP - #include + #include "wx/wx.h" #endif //! wxWidgets headers -#include // raw file io support -#include // filename support +#include "wx/file.h" // raw file io support +#include "wx/filename.h" // filename support //! application headers #include "defsext.h" // additional definitions diff --git a/samples/stc/edit.h b/samples/stc/edit.h index fb4f44989b..4a7ecf79d1 100644 --- a/samples/stc/edit.h +++ b/samples/stc/edit.h @@ -23,7 +23,7 @@ //! wxWidgets headers //! wxWidgets/contrib headers -#include // styled text control +#include "wx/stc/stc.h" // styled text control //! application headers #include "prefs.h" // preferences diff --git a/samples/stc/prefs.cpp b/samples/stc/prefs.cpp index 15f8c0b46c..2e86866940 100644 --- a/samples/stc/prefs.cpp +++ b/samples/stc/prefs.cpp @@ -13,7 +13,7 @@ //---------------------------------------------------------------------------- // For compilers that support precompilation, includes . -#include +#include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop @@ -22,7 +22,7 @@ // for all others, include the necessary headers (this file is usually all you // need because it includes almost all 'standard' wxWidgets headers) #ifndef WX_PRECOMP - #include + #include "wx/wx.h" #endif //! wxWidgets headers @@ -376,4 +376,3 @@ const StyleInfo g_StylePrefs [] = { }; const int g_StylePrefsSize = WXSIZEOF(g_StylePrefs); - diff --git a/samples/stc/prefs.h b/samples/stc/prefs.h index b17ad6de7e..4ac01745e3 100644 --- a/samples/stc/prefs.h +++ b/samples/stc/prefs.h @@ -1,4 +1,4 @@ - ////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////// // File: prefs.h // Purpose: STC test Preferences initialization // Maintainer: Wyo @@ -23,7 +23,7 @@ //! wxWidgets headers //! wxWidgets/contrib headers -#include // styled text control +#include "wx/stc/stc.h" // styled text control //! application headers @@ -150,4 +150,3 @@ extern const StyleInfo g_StylePrefs[]; extern const int g_StylePrefsSize; #endif // _PREFS_H_ - diff --git a/samples/stc/stctest.cpp b/samples/stc/stctest.cpp index ea4c90a706..35b8a01121 100644 --- a/samples/stc/stctest.cpp +++ b/samples/stc/stctest.cpp @@ -13,7 +13,7 @@ //---------------------------------------------------------------------------- // For compilers that support precompilation, includes . -#include +#include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop -- 2.45.2