Removed never defined _OLD_FILE_IMPL

This commit is contained in:
Christina Rossmanith
2011-03-21 13:41:50 +01:00
parent 57d3e290cc
commit 4b9842da83
4 changed files with 1 additions and 168 deletions

View File

@@ -1349,18 +1349,7 @@ void SbiRuntime::StepRENAME() // Rename Tos+1 to Tos
}
else
{
#ifdef _OLD_FILE_IMPL
DirEntry aSourceDirEntry( aSource );
if( aSourceDirEntry.Exists() )
{
if( aSourceDirEntry.MoveTo( DirEntry(aDest) ) != FSYS_ERR_OK )
StarBASIC::Error( SbERR_PATH_NOT_FOUND );
}
else
StarBASIC::Error( SbERR_PATH_NOT_FOUND );
#else
implStepRenameOSL( aSource, aDest );
#endif
}
}