4.28 beta

This commit is contained in:
Igor Pavlov
2005-09-26 00:00:00 +00:00
committed by Kornel Lesiński
parent d66cf2fcf3
commit 32c73adef4
35 changed files with 108 additions and 101 deletions

View File

@@ -419,7 +419,7 @@ void AddUniqueStringToHeadOfList(UStringVector &list,
const UString &string)
{
for(int i = 0; i < list.Size();)
if (string.CollateNoCase(list[i]) == 0)
if (string.CompareNoCase(list[i]) == 0)
list.Delete(i);
else
i++;