fn.Mkdir now gives an ICE on VC6 now that it is const.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61092 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2009-06-17 17:31:53 +00:00
parent 77a246e118
commit 9f7191dbb9

View File

@@ -647,7 +647,7 @@ void ArchiveTestCase<ClassFactoryT>::CreateArchive(wxOutputStream& out,
TestEntry& entry = *i->second; TestEntry& entry = *i->second;
if (fn.IsDir()) { if (fn.IsDir()) {
fn.Mkdir(0777, wxPATH_MKDIR_FULL); wxFileName::Mkdir(fn.GetPath(), 0777, wxPATH_MKDIR_FULL);
} else { } else {
wxFileName::Mkdir(fn.GetPath(), 0777, wxPATH_MKDIR_FULL); wxFileName::Mkdir(fn.GetPath(), 0777, wxPATH_MKDIR_FULL);
wxFFileOutputStream fileout(fn.GetFullPath()); wxFFileOutputStream fileout(fn.GetFullPath());