Fix (presumed) stale name in macOS KIPLATFORM::IO.
This commit is contained in:
parent
05fef51d81
commit
1282e00775
|
@ -29,7 +29,8 @@ FILE* KIPLATFORM::IO::SeqFOpen( const wxString& aPath, const wxString& aMode )
|
|||
return wxFopen( aPath, aMode );
|
||||
}
|
||||
|
||||
bool AssignPermissions(const wxString& sourceFilePath, const wxString& destFilePath)
|
||||
|
||||
bool KIPLATFORM::IO::DuplicatePermissions(const wxString& sourceFilePath, const wxString& destFilePath)
|
||||
{
|
||||
NSString *sourcePath = [NSString stringWithUTF8String:sourceFilePath.utf8_str()];
|
||||
NSString *destPath = [NSString stringWithUTF8String:destFilePath.utf8_str()];
|
||||
|
|
Loading…
Reference in New Issue