Subversion Repositories spk

Rev

Rev 158 | Rev 170 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 158 Rev 160
Line 222... Line 222...
222
 
222
 
223
void CVirtualFileSystem::_removeSameFile(const Utils::String &sFile, const Utils::String &sDest, const Utils::String &ext, FileList *pList)
223
void CVirtualFileSystem::_removeSameFile(const Utils::String &sFile, const Utils::String &sDest, const Utils::String &ext, FileList *pList)
224
{
224
{
225
	CFileIO F(sFile);
225
	CFileIO F(sFile);
226
 
226
 
227
	Utils::String newFile = F.ChangeFileExtension(ext).ToString();
227
	Utils::String newFile = F.changeFileExtension(ext);
228
	newFile = newFile.lower();
228
	newFile = newFile.lower();
229
 
229
 
230
	FileListItr itr = pList->find(newFile);
230
	FileListItr itr = pList->find(newFile);
231
	if ( itr != pList->end() ) {
231
	if ( itr != pList->end() ) {
232
		if ( !CFileIO((*pList)[newFile]).dir().Compare(CFileIO(sDest).dir()) ) {
232
		if ( !CFileIO((*pList)[newFile]).dir().Compare(CFileIO(sDest).dir()) ) {