Fix nsCString::AppendWithConversion() to work.

This commit is contained in:
waterson%netscape.com 2000-08-20 20:41:31 +00:00
Родитель 1f5d36b304
Коммит 179f993e8b
3 изменённых файлов: 12 добавлений и 3 удалений

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

@ -1082,7 +1082,10 @@ void nsCString::AppendWithConversion( const PRUnichar* aBuffer, PRInt32 aLength
aLength = nsCharTraits<PRUnichar>::length(aBuffer); aLength = nsCharTraits<PRUnichar>::length(aBuffer);
if ( aLength > 0 ) if ( aLength > 0 )
StrAppend(*this, temp, 0, aLength); {
temp.mLength = aLength;
StrAppend(*this, temp, 0, aLength);
}
} }
/** /**

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

@ -1082,7 +1082,10 @@ void nsCString::AppendWithConversion( const PRUnichar* aBuffer, PRInt32 aLength
aLength = nsCharTraits<PRUnichar>::length(aBuffer); aLength = nsCharTraits<PRUnichar>::length(aBuffer);
if ( aLength > 0 ) if ( aLength > 0 )
StrAppend(*this, temp, 0, aLength); {
temp.mLength = aLength;
StrAppend(*this, temp, 0, aLength);
}
} }
/** /**

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

@ -1082,7 +1082,10 @@ void nsCString::AppendWithConversion( const PRUnichar* aBuffer, PRInt32 aLength
aLength = nsCharTraits<PRUnichar>::length(aBuffer); aLength = nsCharTraits<PRUnichar>::length(aBuffer);
if ( aLength > 0 ) if ( aLength > 0 )
StrAppend(*this, temp, 0, aLength); {
temp.mLength = aLength;
StrAppend(*this, temp, 0, aLength);
}
} }
/** /**