fixing an earlier mistake while making string conversions explicit

This commit is contained in:
scc@netscape.com
2000-04-17 09:56:40 +00:00
parent 90fbe3675d
commit 84a13921e1
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