Removed "if (mapExt!=toExt)" from alias map assignement to allow aliases to

be overriden for all cases.
This commit is contained in:
Robert Osfield
2005-12-20 09:29:26 +00:00
parent bcd082db3d
commit c465036a7c

View File

@@ -455,7 +455,7 @@ void Registry::removeReaderWriter(ReaderWriter* rw)
void Registry::addFileExtensionAlias(const std::string mapExt, const std::string toExt)
{
if (mapExt!=toExt) _extAliasMap[mapExt] = toExt;
_extAliasMap[mapExt] = toExt;
}
std::string Registry::createLibraryNameForFile(const std::string& fileName)