Fix compile error
wxMkDir's mode is required for linux but not windows (yay)
This commit is contained in:
parent
32b6deb8b1
commit
fa15f8aa0c
|
@ -856,7 +856,7 @@ bool PANEL_FP_LIB_TABLE::convertLibrary( STRING_UTF8_MAP* aOldFileProps,
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if( !newFileName.DirExists() )
|
if( !newFileName.DirExists() )
|
||||||
wxMkDir( aNewFilePath );
|
wxMkDir( aNewFilePath, wxS_DIR_DEFAULT );
|
||||||
|
|
||||||
bool bestEfforts = false; // throw on first error
|
bool bestEfforts = false; // throw on first error
|
||||||
oldFilePI->FootprintEnumerate( fpNames, aOldFilePath, bestEfforts, aOldFileProps );
|
oldFilePI->FootprintEnumerate( fpNames, aOldFilePath, bestEfforts, aOldFileProps );
|
||||||
|
|
Loading…
Reference in New Issue