From fb86524fc3a7a90d7d60a3f0c60cd87cc891bcd8 Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot Date: Sat, 31 Aug 2002 22:36:13 +0000 Subject: [PATCH] use include "..." instead of <...> git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16896 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/db/dbtest.cpp | 12 ++++++------ samples/db/dbtest.h | 4 ++-- samples/db/listdb.cpp | 4 ++-- samples/db/listdb.h | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/samples/db/dbtest.cpp b/samples/db/dbtest.cpp index 202e7f6493..0c91b117d8 100644 --- a/samples/db/dbtest.cpp +++ b/samples/db/dbtest.cpp @@ -32,7 +32,7 @@ #endif //__BORLANDC__ #ifndef WX_PRECOMP -#include +#include "wx/wx.h" #endif //WX_PRECOMP #if defined(__WXGTK__) || defined(__WXX11__) @@ -41,15 +41,15 @@ #include /* Included strictly for reading the text file with the database parameters */ -//#include /* Required in the file which will get the data source connection */ -//#include /* 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 -#include -#include -#include +#include "wx/grid.h" +#include "wx/generic/gridctrl.h" +#include "wx/dbgrid.h" #define CHOICEINT #endif diff --git a/samples/db/dbtest.h b/samples/db/dbtest.h index d20fd3d9b5..780a58e27e 100644 --- a/samples/db/dbtest.h +++ b/samples/db/dbtest.h @@ -13,8 +13,8 @@ #pragma interface "dbtest.h" #endif -#include -#include +#include "wx/string.h" +#include "wx/dbtable.h" enum DialogModes {mView,mCreate,mEdit,mSearch}; diff --git a/samples/db/listdb.cpp b/samples/db/listdb.cpp index ccf40bebb6..a38a43caa0 100644 --- a/samples/db/listdb.cpp +++ b/samples/db/listdb.cpp @@ -51,10 +51,10 @@ #endif //__BORLANDC__ #ifndef WX_PRECOMP -#include +#include "wx/wx.h" #endif //WX_PRECOMP -#include +#include "wx/dbtable.h" extern wxDbList WXDLLEXPORT *PtrBegDbList; /* from db.cpp, used in getting back error results from db connections */ diff --git a/samples/db/listdb.h b/samples/db/listdb.h index 070a0982e2..e85b4da17a 100644 --- a/samples/db/listdb.h +++ b/samples/db/listdb.h @@ -21,7 +21,7 @@ #define LISTDB_DOT_H -#include +#include "wx/dbtable.h" const int LOOKUP_COL_LEN = 250; -- 2.45.2