removed calls to deprecated string methods

This commit is contained in:
rickg%netscape.com 2000-03-12 11:18:18 +00:00
Родитель 7b7b1f1c12
Коммит 59808e15af
4 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -197,7 +197,7 @@ nsMathMLContainerFrame::ParseNumericValue(nsString& aString,
return PR_FALSE; // two dots encountered
else if (c == '.')
gotDot = PR_TRUE;
else if (!nsString::IsDigit(c)) {
else if (!nsCRT::IsAsciiDigit(c)) {
aString.Right(unit, stringLength - i);
break;
}

Просмотреть файл

@ -1033,7 +1033,7 @@ msg_generate_message_id (nsIMsgIdentity *identity)
if (host) {
const char *s;
for (s = ++host; *s; s++)
if (!nsCRT::IsAsciiAlpha(*s) && !nsString::IsDigit(*s) &&
if (!nsCRT::IsAsciiAlpha(*s) && !nsCRT::IsAsciiDigit(*s) &&
*s != '-' && *s != '_' && *s != '.') {
host = 0;
break;

Просмотреть файл

@ -167,7 +167,7 @@ nsProtocolProxyService::CanUseProxy(nsIURI* aURI)
PRInt32 nport = 0; // no proxy port
// find the end of this element.
while (*endproxy && (*endproxy != ',' &&
!nsString::IsSpace(*endproxy)))
!nsCRT::IsAsciiSpace(*endproxy)))
{
if (*endproxy == ':')
portLocation=endproxy;

Просмотреть файл

@ -1038,7 +1038,7 @@ RDFContentSinkImpl::GetIdAboutAttribute(const nsIParserNode& aNode,
// mean http://www.w3.org/TR/REC-xml#NT-Letter, which it
// probably isn't.
PRUnichar first = name.First();
if (! nsString::IsAlpha(first) &&
if (! nsCRT::IsAsciiAlpha(first) &&
first != PRUnichar(':') &&
first != PRUnichar('_')) {
PR_LOG(gLog, PR_LOG_ALWAYS,