fix from the main branch which replaces delete with the (proper) delete []

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8690 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-11-05 13:26:16 +00:00
parent 68f30f26d2
commit 52860855bf

View File

@@ -1646,7 +1646,7 @@ void CparameterDlg::FillDataSourceList()
for (i = 0; wxStrlen(p[i]); i++)
pParamODBCSourceList->Append(p[i]);
delete p;
delete [] p;
} // CparameterDlg::CparameterDlg::FillDataSourceList()