diff options
Diffstat (limited to 'Source/WebCore/svg/SVGFEMergeNodeElement.cpp')
-rw-r--r-- | Source/WebCore/svg/SVGFEMergeNodeElement.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/WebCore/svg/SVGFEMergeNodeElement.cpp b/Source/WebCore/svg/SVGFEMergeNodeElement.cpp index b5b5cc513..8cd0ca653 100644 --- a/Source/WebCore/svg/SVGFEMergeNodeElement.cpp +++ b/Source/WebCore/svg/SVGFEMergeNodeElement.cpp @@ -60,15 +60,15 @@ bool SVGFEMergeNodeElement::isSupportedAttribute(const QualifiedName& attrName) return supportedAttributes.contains<QualifiedName, SVGAttributeHashTranslator>(attrName); } -void SVGFEMergeNodeElement::parseAttribute(Attribute* attr) +void SVGFEMergeNodeElement::parseAttribute(const Attribute& attribute) { - if (!isSupportedAttribute(attr->name())) { - SVGElement::parseAttribute(attr); + if (!isSupportedAttribute(attribute.name())) { + SVGElement::parseAttribute(attribute); return; } - if (attr->name() == SVGNames::inAttr) { - setIn1BaseValue(attr->value()); + if (attribute.name() == SVGNames::inAttr) { + setIn1BaseValue(attribute.value()); return; } |