work around VC brain damage

This commit is contained in:
Glenn Maynard
2005-09-29 06:35:30 +00:00
parent 1c9f10be42
commit 08bbfd215d
8 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -402,7 +402,7 @@ void RageFileManager::GetDirListing( CString sPath, CStringArray &AddTo, bool bO
}
/* Files may only be moved within the same file driver. */
bool RageFileManager::MoveFile( CString sOldPath, CString sNewPath )
bool RageFileManager::Move( CString sOldPath, CString sNewPath )
{
vector<LoadedDriver *> aDriverList;
ReferenceAllDrivers( aDriverList );
@@ -419,7 +419,7 @@ bool RageFileManager::MoveFile( CString sOldPath, CString sNewPath )
if( sOldDriverPath.size() == 0 || sNewDriverPath.size() == 0 )
continue;
bool ret = aDriverList[i]->m_pDriver->MoveFile( sOldDriverPath, sNewDriverPath );
bool ret = aDriverList[i]->m_pDriver->Move( sOldDriverPath, sNewDriverPath );
if( ret )
Deleted = true;
}