More changes to use the latest wxDb/wxDbTable method enhancements

More Unicode additions


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9291 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
George Tasker
2001-02-04 16:01:33 +00:00
parent 9556da13ba
commit d3358961db
2 changed files with 10 additions and 11 deletions

View File

@@ -431,7 +431,7 @@ class CqueryDlg : public wxDialog
wxDbColInf *colInf; // Column inf. returned by db->GetColumns()
wxDbTable *dbTable; // generic wxDbTable object for attaching to the table to query
wxChar *masterTableName; // Name of the table that 'dbTable' will be associated with
wxChar *pWhere; // A pointer to the storage for the resulting where clause
wxString pWhere; // A pointer to the storage for the resulting where clause
wxDb *pDB;
public:
@@ -470,7 +470,7 @@ class CqueryDlg : public wxDialog
wxTextCtrl *pFocusTxt;
CqueryDlg(wxWindow *parent, wxDb *pDb, wxChar *tblName[], wxChar *pWhereArg);
CqueryDlg(wxWindow *parent, wxDb *pDb, wxChar *tblName[], const wxString &pWhereArg);
~CqueryDlg();
void OnButton( wxCommandEvent &event );