fixed bug in IsOrdered that was found on the web

This commit is contained in:
rickg%netscape.com 1998-10-26 22:33:39 +00:00
Родитель 5db5e6ef03
Коммит 674c289b46
4 изменённых файлов: 4 добавлений и 4 удалений

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

@ -159,7 +159,7 @@ PRBool nsString::IsOrdered(void) const {
if(mLength>1) {
PRInt32 theIndex;
for(theIndex=1;theIndex<mLength;theIndex++) {
if(mStr[theIndex-1]>=mStr[theIndex]) {
if(mStr[theIndex-1]>mStr[theIndex]) {
result=PR_FALSE;
break;
}

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

@ -159,7 +159,7 @@ PRBool nsString::IsOrdered(void) const {
if(mLength>1) {
PRInt32 theIndex;
for(theIndex=1;theIndex<mLength;theIndex++) {
if(mStr[theIndex-1]>=mStr[theIndex]) {
if(mStr[theIndex-1]>mStr[theIndex]) {
result=PR_FALSE;
break;
}

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

@ -159,7 +159,7 @@ PRBool nsString::IsOrdered(void) const {
if(mLength>1) {
PRInt32 theIndex;
for(theIndex=1;theIndex<mLength;theIndex++) {
if(mStr[theIndex-1]>=mStr[theIndex]) {
if(mStr[theIndex-1]>mStr[theIndex]) {
result=PR_FALSE;
break;
}

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

@ -159,7 +159,7 @@ PRBool nsString::IsOrdered(void) const {
if(mLength>1) {
PRInt32 theIndex;
for(theIndex=1;theIndex<mLength;theIndex++) {
if(mStr[theIndex-1]>=mStr[theIndex]) {
if(mStr[theIndex-1]>mStr[theIndex]) {
result=PR_FALSE;
break;
}