]> git.saurik.com Git - wxWidgets.git/commitdiff
use include "..." instead of <...>
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Sat, 31 Aug 2002 22:36:13 +0000 (22:36 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Sat, 31 Aug 2002 22:36:13 +0000 (22:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16896 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/db/dbtest.cpp
samples/db/dbtest.h
samples/db/listdb.cpp
samples/db/listdb.h

index 202e7f64933f344a02eb48e1ddb6f4f4789c8ade..0c91b117d894001462e5db875ca7dd516bf91f36 100644 (file)
@@ -32,7 +32,7 @@
 #endif  //__BORLANDC__
 
 #ifndef WX_PRECOMP
 #endif  //__BORLANDC__
 
 #ifndef WX_PRECOMP
-#include  <wx/wx.h>
+#include  "wx/wx.h"
 #endif //WX_PRECOMP
 
 #if defined(__WXGTK__) || defined(__WXX11__)
 #endif //WX_PRECOMP
 
 #if defined(__WXGTK__) || defined(__WXX11__)
 
 #include <stdio.h>                  /* Included strictly for reading the text file with the database parameters */
 
 
 #include <stdio.h>                  /* Included strictly for reading the text file with the database parameters */
 
-//#include <wx/db.h>                  /* Required in the file which will get the data source connection */
-//#include <wx/dbtable.h>             /* Has the wxDbTable object from which all data objects will inherit their data table functionality */
+//#include "wx/db.h"                  /* Required in the file which will get the data source connection */
+//#include "wx/dbtable.h"             /* Has the wxDbTable object from which all data objects will inherit their data table functionality */
 
 //extern wxDbList WXDLLEXPORT *PtrBegDbList;    /* from db.cpp, used in getting back error results from db connections */
 
 #if wxUSE_NEW_GRID
 
 //extern wxDbList WXDLLEXPORT *PtrBegDbList;    /* from db.cpp, used in getting back error results from db connections */
 
 #if wxUSE_NEW_GRID
-#include <wx/grid.h>
-#include <wx/generic/gridctrl.h>
-#include <wx/dbgrid.h>
+#include "wx/grid.h"
+#include "wx/generic/gridctrl.h"
+#include "wx/dbgrid.h"
 
 #define CHOICEINT
 #endif
 
 #define CHOICEINT
 #endif
index d20fd3d9b5312aeef66e775a254d7486a5473dc6..780a58e27e0e499c79f935efe7f1f1f7caf0438f 100644 (file)
@@ -13,8 +13,8 @@
 #pragma interface "dbtest.h"
 #endif
 
 #pragma interface "dbtest.h"
 #endif
 
-#include <wx/string.h>
-#include <wx/dbtable.h>
+#include "wx/string.h"
+#include "wx/dbtable.h"
 
 enum    DialogModes {mView,mCreate,mEdit,mSearch};
 
 
 enum    DialogModes {mView,mCreate,mEdit,mSearch};
 
index ccf40bebb623b9fc23ddf68aed6840b6eb6b98ac..a38a43caa063da39d9a0b235d56870de67664b9c 100644 (file)
 #endif  //__BORLANDC__
 
 #ifndef WX_PRECOMP
 #endif  //__BORLANDC__
 
 #ifndef WX_PRECOMP
-#include  <wx/wx.h>
+#include  "wx/wx.h"
 #endif //WX_PRECOMP
 
 #endif //WX_PRECOMP
 
-#include <wx/dbtable.h>
+#include "wx/dbtable.h"
 
 extern wxDbList WXDLLEXPORT *PtrBegDbList;    /* from db.cpp, used in getting back error results from db connections */
 
 
 extern wxDbList WXDLLEXPORT *PtrBegDbList;    /* from db.cpp, used in getting back error results from db connections */
 
index 070a0982e2528ce42e3b051d4519d07acdce9c86..e85b4da17a99e8a01a5681d5186618341a6f1ea2 100644 (file)
@@ -21,7 +21,7 @@
 #define LISTDB_DOT_H
 
 
 #define LISTDB_DOT_H
 
 
-#include <wx/dbtable.h>
+#include "wx/dbtable.h"
 
 const int LOOKUP_COL_LEN = 250;
 
 
 const int LOOKUP_COL_LEN = 250;