]> git.saurik.com Git - wxWidgets.git/commitdiff
angle bracket problem fix
authorWłodzimierz Skiba <abx@abx.art.pl>
Fri, 16 Sep 2005 18:25:44 +0000 (18:25 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Fri, 16 Sep 2005 18:25:44 +0000 (18:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35523 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

12 files changed:
contrib/samples/stc/defsext.h
contrib/samples/stc/edit.cpp
contrib/samples/stc/edit.h
contrib/samples/stc/prefs.cpp
contrib/samples/stc/prefs.h
contrib/samples/stc/stctest.cpp
samples/stc/defsext.h
samples/stc/edit.cpp
samples/stc/edit.h
samples/stc/prefs.cpp
samples/stc/prefs.h
samples/stc/stctest.cpp

index 0493c980e359d6369cae40b8da94ed5dcbaa9027..e7428b7da5c0052c993667fa6b0c353ee8debab6 100644 (file)
@@ -16,8 +16,8 @@
 //----------------------------------------------------------------------------
 
 //! wxWidgets headers
-#include <wx/print.h>    // printing support
-#include <wx/printdlg.h> // printing dialog
+#include "wx/print.h"    // printing support
+#include "wx/printdlg.h" // printing dialog
 
 
 //============================================================================
index a3b7d7c236a327fc8633eb0dc8070303a5284138..7a166bbcdd6e500c920ade6abc7a88fc6a18afbe 100644 (file)
@@ -18,7 +18,7 @@
 //----------------------------------------------------------------------------
 
 // For compilers that support precompilation, includes <wx/wx.h>.
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
     #pragma hdrstop
 // 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 <wx/wx.h>
+    #include "wx/wx.h"
 #endif
 
 //! wxWidgets headers
-#include <wx/file.h>     // raw file io support
-#include <wx/filename.h> // filename support
+#include "wx/file.h"     // raw file io support
+#include "wx/filename.h" // filename support
 
 //! application headers
 #include "defsext.h"     // additional definitions
index fb4f44989bbb947230d04ff5cc0711230199f310..4a7ecf79d135586491a09742b00dee5ded2c9f91 100644 (file)
@@ -23,7 +23,7 @@
 //! wxWidgets headers
 
 //! wxWidgets/contrib headers
-#include <wx/stc/stc.h>  // styled text control
+#include "wx/stc/stc.h"  // styled text control
 
 //! application headers
 #include "prefs.h"       // preferences
index 15f8c0b46cc4cf41e077fccd13f7f16b676a755a..2e86866940ea03ae0250b96b53a770d173f54bec 100644 (file)
@@ -13,7 +13,7 @@
 //----------------------------------------------------------------------------
 
 // For compilers that support precompilation, includes <wx/wx.h>.
-#include <wx/wxprec.h>
+#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 <wx/wx.h>
+    #include "wx/wx.h"
 #endif
 
 //! wxWidgets headers
@@ -376,4 +376,3 @@ const StyleInfo g_StylePrefs [] = {
     };
 
 const int g_StylePrefsSize = WXSIZEOF(g_StylePrefs);
-
index b17ad6de7ef2a6a74c7e906db05bcc2b327b87ae..4ac01745e36cf83df226eed2ac67903eb367f9a0 100644 (file)
@@ -1,4 +1,4 @@
-    //////////////////////////////////////////////////////////////////////////////
+//////////////////////////////////////////////////////////////////////////////
 // File:        prefs.h
 // Purpose:     STC test Preferences initialization
 // Maintainer:  Wyo
@@ -23,7 +23,7 @@
 //! wxWidgets headers
 
 //! wxWidgets/contrib headers
-#include <wx/stc/stc.h>  // 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_
-
index ea4c90a706b19e0f4b4a327d0ec02f32591bac11..35b8a01121b48579803ed7011fa165b5e66dc626 100644 (file)
@@ -13,7 +13,7 @@
 //----------------------------------------------------------------------------
 
 // For compilers that support precompilation, includes <wx/wx.h>.
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
     #pragma hdrstop
index 0493c980e359d6369cae40b8da94ed5dcbaa9027..e7428b7da5c0052c993667fa6b0c353ee8debab6 100644 (file)
@@ -16,8 +16,8 @@
 //----------------------------------------------------------------------------
 
 //! wxWidgets headers
-#include <wx/print.h>    // printing support
-#include <wx/printdlg.h> // printing dialog
+#include "wx/print.h"    // printing support
+#include "wx/printdlg.h" // printing dialog
 
 
 //============================================================================
index a3b7d7c236a327fc8633eb0dc8070303a5284138..7a166bbcdd6e500c920ade6abc7a88fc6a18afbe 100644 (file)
@@ -18,7 +18,7 @@
 //----------------------------------------------------------------------------
 
 // For compilers that support precompilation, includes <wx/wx.h>.
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
     #pragma hdrstop
 // 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 <wx/wx.h>
+    #include "wx/wx.h"
 #endif
 
 //! wxWidgets headers
-#include <wx/file.h>     // raw file io support
-#include <wx/filename.h> // filename support
+#include "wx/file.h"     // raw file io support
+#include "wx/filename.h" // filename support
 
 //! application headers
 #include "defsext.h"     // additional definitions
index fb4f44989bbb947230d04ff5cc0711230199f310..4a7ecf79d135586491a09742b00dee5ded2c9f91 100644 (file)
@@ -23,7 +23,7 @@
 //! wxWidgets headers
 
 //! wxWidgets/contrib headers
-#include <wx/stc/stc.h>  // styled text control
+#include "wx/stc/stc.h"  // styled text control
 
 //! application headers
 #include "prefs.h"       // preferences
index 15f8c0b46cc4cf41e077fccd13f7f16b676a755a..2e86866940ea03ae0250b96b53a770d173f54bec 100644 (file)
@@ -13,7 +13,7 @@
 //----------------------------------------------------------------------------
 
 // For compilers that support precompilation, includes <wx/wx.h>.
-#include <wx/wxprec.h>
+#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 <wx/wx.h>
+    #include "wx/wx.h"
 #endif
 
 //! wxWidgets headers
@@ -376,4 +376,3 @@ const StyleInfo g_StylePrefs [] = {
     };
 
 const int g_StylePrefsSize = WXSIZEOF(g_StylePrefs);
-
index b17ad6de7ef2a6a74c7e906db05bcc2b327b87ae..4ac01745e36cf83df226eed2ac67903eb367f9a0 100644 (file)
@@ -1,4 +1,4 @@
-    //////////////////////////////////////////////////////////////////////////////
+//////////////////////////////////////////////////////////////////////////////
 // File:        prefs.h
 // Purpose:     STC test Preferences initialization
 // Maintainer:  Wyo
@@ -23,7 +23,7 @@
 //! wxWidgets headers
 
 //! wxWidgets/contrib headers
-#include <wx/stc/stc.h>  // 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_
-
index ea4c90a706b19e0f4b4a327d0ec02f32591bac11..35b8a01121b48579803ed7011fa165b5e66dc626 100644 (file)
@@ -13,7 +13,7 @@
 //----------------------------------------------------------------------------
 
 // For compilers that support precompilation, includes <wx/wx.h>.
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
     #pragma hdrstop