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)

git-svn-id: svn://10.0.0.236/trunk@120283 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jaggernaut%netscape.com 2002-04-30 04:03:57 +00:00
parent f1bd22715a
commit 6f59cccadb
4 changed files with 4 additions and 4 deletions

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;

View File

@ -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;