fixing an earlier mistake while making string conversions explicit

git-svn-id: svn://10.0.0.236/trunk@66187 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
scc%netscape.com
2000-04-17 09:56:40 +00:00
parent 4858549d2d
commit 32ef1c0c04
2 changed files with 2 additions and 2 deletions

View File

@@ -1061,7 +1061,7 @@ nsString& CNewlineToken::GetStringValueXXX(void) {
nsresult CNewlineToken::Consume(PRUnichar aChar, nsScanner& aScanner,PRInt32 aMode) {
#if 1
mTextValue.AssignWithConversion(kNewLine); //This is what I THINK we should be doing.
mTextValue.Assign(kNewLine); //This is what I THINK we should be doing.
#else
mTextValue=aChar;
#endif