should use array delete on a wxString object (line 991) that is not an array of wxStrings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9017 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster 2000-12-29 17:38:03 +00:00
parent d752a3c394
commit eb53bce493

View File

@ -988,7 +988,7 @@ wxConcatFiles (const wxString& file1, const wxString& file2, const wxString& fil
fclose (fp3);
bool result = wxRenameFile(outfile, file3);
delete[] outfile;
delete outfile;
return result;
}