removed calls to deprecated string methods
git-svn-id: svn://10.0.0.236/trunk@62707 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -917,7 +917,7 @@ NS_IMETHODIMP CViewSourceHTML::HandleToken(CToken* aToken,nsIParser* aParser) {
|
||||
nsString& theEntity=aToken->GetStringValueXXX();
|
||||
if(!theEntity.EqualsIgnoreCase("XI",2)) {
|
||||
PRUnichar theChar=theEntity.CharAt(0);
|
||||
if((nsString::IsDigit(theChar)) || ('X'==theChar) || ('x'==theChar)){
|
||||
if((nsCRT::IsAsciiDigit(theChar)) || ('X'==theChar) || ('x'==theChar)){
|
||||
theStr.Append("#");
|
||||
}
|
||||
theStr.Append(theEntity);
|
||||
|
||||
Reference in New Issue
Block a user