argh, back myself out because it causes xpcomglue bustage

This commit is contained in:
alecf%netscape.com 2002-08-16 15:24:58 +00:00
Родитель 27b1c72160
Коммит b39e01b285
2 изменённых файлов: 4 добавлений и 6 удалений

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

@ -54,7 +54,6 @@
#include "nspr.h"
#include "plstr.h"
#include <ctype.h>
#include "nsCRT.h"
/******************************************************************************************
MODULE NOTES:
@ -678,8 +677,8 @@ PRInt32 Compare2To1(const PRUnichar* aStr1,const char* aStr2,PRUint32 aCount,PRB
// can't do case conversion on characters out of our range
if (aIgnoreCase && c1<128 && c2<128) {
c1 = nsCRT::ToLower(char(c1));
c2 = nsCRT::ToLower(char(c2));
c1 = tolower(char(c1));
c2 = tolower(char(c2));
if (c1 == c2) continue;
}

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

@ -54,7 +54,6 @@
#include "nspr.h"
#include "plstr.h"
#include <ctype.h>
#include "nsCRT.h"
/******************************************************************************************
MODULE NOTES:
@ -678,8 +677,8 @@ PRInt32 Compare2To1(const PRUnichar* aStr1,const char* aStr2,PRUint32 aCount,PRB
// can't do case conversion on characters out of our range
if (aIgnoreCase && c1<128 && c2<128) {
c1 = nsCRT::ToLower(char(c1));
c2 = nsCRT::ToLower(char(c2));
c1 = tolower(char(c1));
c2 = tolower(char(c2));
if (c1 == c2) continue;
}