Subversion Repositories spk

Rev

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

Rev 79 Rev 81
Line 91... Line 91...
91
	}
91
	}
92
}
92
}
93
 
93
 
94
void CVirtualFileSystem::_addFile(const Utils::String &sFile, const Utils::String &sDest, FileList *pList)
94
void CVirtualFileSystem::_addFile(const Utils::String &sFile, const Utils::String &sDest, FileList *pList)
95
{
95
{
96
	Utils::String test = sFile.findReplace("\\", "/").findReplace("//", "/").removeIf(0, '/').lower();
-
 
97
	(*pList)[sFile.findReplace("\\", "/").findReplace("//", "/").removeIf(0, '/').lower()] = sDest.findReplace("//", "/");
96
	(*pList)[sFile.asFilename().lower()] = sDest.asFilename();
98
}
97
}
99
void CVirtualFileSystem::_addModFile(const Utils::String &sFile, const Utils::String &sMod, FileList *pList)
98
void CVirtualFileSystem::_addModFile(const Utils::String &sFile, const Utils::String &sMod, FileList *pList)
100
{
99
{
101
	this->_addFile(sFile, sMod + "::" + sFile, pList);
100
	this->_addFile(sFile, sMod + "::" + sFile, pList);
102
}
101
}