This commit is contained in:
scc%netscape.com 2000-05-15 01:27:17 +00:00
Родитель 58fe0403d8
Коммит ac56679bff
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -809,7 +809,7 @@ nsresult nsMsgSearchTerm::MatchString (const char *stringToMatch,
{
if ((n_str.GetBuffer())[0])
{
if (n_str.Equals(stringToMatch, PR_TRUE /*ignore case*/) /* INTL_StrIs(csid, n_header, n_str)*/ )
if (n_str.EqualsWithConversion(stringToMatch, PR_TRUE /*ignore case*/) /* INTL_StrIs(csid, n_header, n_str)*/ )
result = PR_TRUE;
}
else if (n_header[0] == '\0') // Special case for "is <the empty string>"
@ -821,7 +821,7 @@ nsresult nsMsgSearchTerm::MatchString (const char *stringToMatch,
{
if ((n_str.GetBuffer())[0])
{
if (!n_str.Equals(stringToMatch, PR_TRUE)/* INTL_StrIs(csid, n_header, n_str)*/ )
if (!n_str.EqualsWithConversion(stringToMatch, PR_TRUE)/* INTL_StrIs(csid, n_header, n_str)*/ )
result = PR_TRUE;
}
else if (n_header[0] != '\0') // Special case for "isn't <the empty string>"