Bug 534526 part 3. Change the ordering in nsSVGElement::UnsetAttr. r=longsonr

This commit is contained in:
Boris Zbarsky 2010-02-23 23:37:47 -05:00
Родитель b12684acf8
Коммит 02ce03ca1b
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -489,6 +489,10 @@ nsresult
nsSVGElement::UnsetAttr(PRInt32 aNamespaceID, nsIAtom* aName,
PRBool aNotify)
{
// XXXbz there's a bunch of redundancy here with AfterSetAttr.
// Maybe consolidate?
nsresult rv = nsSVGElementBase::UnsetAttr(aNamespaceID, aName, aNotify);
PRBool foundMatch = PR_FALSE;
if (aNamespaceID == kNameSpaceID_None) {
@ -649,7 +653,7 @@ nsSVGElement::UnsetAttr(PRInt32 aNamespaceID, nsIAtom* aName,
}
}
return nsSVGElementBase::UnsetAttr(aNamespaceID, aName, aNotify);
return rv;
}
void