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:
@@ -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());
|
||||||
|
Reference in New Issue
Block a user