4.40 beta

This commit is contained in:
Igor Pavlov
2006-05-01 00:00:00 +00:00
committed by Kornel Lesiński
parent 3415684502
commit bd9a40b0ed
61 changed files with 2710 additions and 187 deletions
-16
View File
@@ -460,19 +460,3 @@ void CCensor::ExtendExclude()
}
}
bool AreTheFileNamesDirDelimiterEqual(const UString &name1, const UString &name2)
{
if(name1.Length() != name2.Length())
return false;
for(int i = 0; i < name1.Length(); i++)
{
wchar_t char1 = name1[i], char2 = name2[i];
if (char1 == char2)
continue;
if (IsCharDirLimiter(char1) && IsCharDirLimiter(char2))
continue;
return false;
}
return true;
}