sync with new nsString2 API

git-svn-id: svn://10.0.0.236/trunk@28426 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rickg%netscape.com
1999-04-21 04:02:14 +00:00
parent 5af7050559
commit c1a9c636d1
16 changed files with 25 additions and 24 deletions

View File

@@ -117,7 +117,7 @@ void CToken::DebugDumpToken(ostream& anOutputStream) {
anOutputStream << "[" << GetClassName() << "] ";
int i=0;
for(i=0;i<mTextValue.Length();i++){
anOutputStream << char(mTextValue[i]);
anOutputStream << char(mTextValue.CharAt(i));
}
anOutputStream << " TypeID: " << mTypeID << " AttrCount: " << mAttrCount << endl;
}