Fix two typos on previous checkin for bug 139633. r=dmose, sr=mozbot (even though I couldn't reach him, I'm sure he would've given me sr= for this simple bustage fix)

This commit is contained in:
jaggernaut%netscape.com 2002-04-30 04:03:57 +00:00
Родитель 075fdb1600
Коммит 5cad11cc0a
4 изменённых файлов: 4 добавлений и 4 удалений

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

@ -396,7 +396,7 @@ nsresult
if (i < 0)
aLocalName = aQName;
else
aLocalName = Substring(aLocalName, i+1, aQName.Length() - (i+1));
aLocalName = Substring(aQName, i+1, aQName.Length() - (i+1));
return NS_OK;
}

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

@ -396,7 +396,7 @@ nsresult
if (i < 0)
aLocalName = aQName;
else
aLocalName = Substring(aLocalName, i+1, aQName.Length() - (i+1));
aLocalName = Substring(aQName, i+1, aQName.Length() - (i+1));
return NS_OK;
}

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

@ -247,7 +247,7 @@ public:
theLast=aValue.Last();
theLen=aValue.Length();
if((2<theLen) && (theFirst==theLast) && (kQuote==theFirst)) {
mName = Substring(aValue, 1, theLen - 2);
mValue = Substring(aValue, 1, theLen - 2);
}
else mValue=aValue;

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

@ -247,7 +247,7 @@ public:
theLast=aValue.Last();
theLen=aValue.Length();
if((2<theLen) && (theFirst==theLast) && (kQuote==theFirst)) {
mName = Substring(aValue, 1, theLen - 2);
mValue = Substring(aValue, 1, theLen - 2);
}
else mValue=aValue;