wxUSE_NEW_GRID changed to wxUSE_GRID to reflect changes in wxWidgets.

Diagnostics output cleaned up
Unicode build fixes when building in wxDbGrid


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27330 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
George Tasker
2004-05-18 02:43:53 +00:00
parent df16c649d2
commit 9b12bd993b
2 changed files with 79 additions and 76 deletions

View File

@@ -22,7 +22,8 @@ enum DialogModes {mView,mCreate,mEdit,mSearch};
#define FILE_CREATE_ID 100
#define FILE_RECREATE_TABLE 110
#define FILE_RECREATE_INDEXES 120
#if wxUSE_NEW_GRID
#if wxUSE_GRID
#define FILE_DBGRID_TABLE 130
#endif
#define FILE_EXIT 199
@@ -166,7 +167,7 @@ class DatabaseDemoFrame: public wxFrame
void OnExit(wxCommandEvent& event);
void OnEditParameters(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
#if wxUSE_NEW_GRID
#if wxUSE_GRID
void OnDbGridTable( wxCommandEvent& );
#endif
void CreateDataTable(bool recreate);
@@ -177,7 +178,7 @@ DECLARE_EVENT_TABLE()
}; // DatabaseDemoFrame
#if wxUSE_NEW_GRID
#if wxUSE_GRID
// *************************** DBGridFrame ***************************