Modified to use the newly defined names for functions/classes/structs defined to match the wxWindows conventions for naming (primarily prefacing these items with wx).
Fixed program so it would not crash when using FILE|EXIT Fixed widget alignment issues git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6769 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -37,7 +37,7 @@ const char CONTACT_TABLE_NAME[] = "contacts";
|
||||
const int CONTACT_NO_COLS = 12; // 0-11
|
||||
|
||||
// Global structure for holding ODBC connection information
|
||||
struct DbStuff DbConnectInf;
|
||||
struct wxDbConnectInf DbConnectInf;
|
||||
|
||||
enum Language {langENGLISH, langFRENCH, langGERMAN, langSPANISH, langOTHER};
|
||||
|
||||
@@ -307,7 +307,7 @@ char * const langQRY_BETWEEN = "column BETWEEN value AND value";
|
||||
class CqueryDlg : public wxDialog
|
||||
{
|
||||
private:
|
||||
CcolInf *colInf; // Column inf. returned by db->GetColumns()
|
||||
wxColInf *colInf; // Column inf. returned by db->GetColumns()
|
||||
wxTable *dbTable;
|
||||
char *masterTableName;
|
||||
char *pWhere; // A pointer to the storage for the resulting where clause
|
||||
|
Reference in New Issue
Block a user