for STRING_081_BRANCH

git-svn-id: svn://10.0.0.236/branches/STRING_081_BRANCH@88631 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
scc%mozilla.org
2001-03-06 03:50:19 +00:00
parent 602920c9a5
commit f4db0afc09
48 changed files with 2484 additions and 1490 deletions

View File

@@ -792,8 +792,8 @@ void nsCString::AssignWithConversion( const nsAReadableString& aString ) {
temp.mLength=fraglen;
StrAppend(*this,temp,0,fraglen);
start += fraglen;
start.advance(fraglen);
}
}
}
@@ -816,7 +816,7 @@ void nsCString::AppendWithConversion( const nsAReadableString& aString ) {
StrAppend(*this,temp,0,fraglen);
start += fraglen;
start.advance(fraglen);
}
}
}
@@ -1390,7 +1390,7 @@ NS_ConvertUCS2toUTF8::NS_ConvertUCS2toUTF8( const nsAReadableString& aString )
while (start != end) {
nsReadableFragment<PRUnichar> frag(start.fragment());
Append(frag.mStart, frag.mEnd - frag.mStart);
start += start.size_forward();
start.advance(start.size_forward());
}
}