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:
parent
f1bd22715a
commit
6f59cccadb
@ -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;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user