changed make_int, make_exp .. to wxmake_int..
fixed small listbox thing fixed layout probs of wxFrame small DnD updates small DialogEd optical correction small ODBC updates added wxListBox DClick Text in controls sample updated wxGTK.spec git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1445 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -508,9 +508,9 @@ UWORD wxTable::GetRowNum(void)
|
||||
/********** wxTable::bindInsertParams() **********/
|
||||
bool wxTable::bindInsertParams(void)
|
||||
{
|
||||
SWORD fSqlType;
|
||||
UDWORD precision;
|
||||
SWORD scale;
|
||||
SWORD fSqlType = 0;
|
||||
UDWORD precision = 0;
|
||||
SWORD scale = 0;
|
||||
|
||||
// Bind each column (that can be inserted) of the table to a parameter marker
|
||||
for (int i = 0; i < noCols; i++)
|
||||
@@ -563,9 +563,9 @@ bool wxTable::bindInsertParams(void)
|
||||
/********** wxTable::bindUpdateParams() **********/
|
||||
bool wxTable::bindUpdateParams(void)
|
||||
{
|
||||
SWORD fSqlType;
|
||||
UDWORD precision;
|
||||
SWORD scale;
|
||||
SWORD fSqlType = 0;
|
||||
UDWORD precision = 0;
|
||||
SWORD scale = 0;
|
||||
|
||||
// Bind each UPDATEABLE column of the table to a parameter marker
|
||||
for (int i = 0, colNo = 1; i < noCols; i++)
|
||||
|
Reference in New Issue
Block a user