diff options
Diffstat (limited to 'WebCore/svg/SVGGradientElement.cpp')
-rw-r--r-- | WebCore/svg/SVGGradientElement.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/WebCore/svg/SVGGradientElement.cpp b/WebCore/svg/SVGGradientElement.cpp index f2d9712..523e4df 100644 --- a/WebCore/svg/SVGGradientElement.cpp +++ b/WebCore/svg/SVGGradientElement.cpp @@ -38,19 +38,13 @@ namespace WebCore { -SVGGradientElement::SVGGradientElement(const QualifiedName& tagName, Document* doc) - : SVGStyledElement(tagName, doc) - , SVGURIReference() - , SVGExternalResourcesRequired() +SVGGradientElement::SVGGradientElement(const QualifiedName& tagName, Document* document) + : SVGStyledElement(tagName, document) , m_gradientUnits(SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) , m_gradientTransform(SVGTransformList::create(SVGNames::gradientTransformAttr)) { } -SVGGradientElement::~SVGGradientElement() -{ -} - void SVGGradientElement::parseMappedAttribute(Attribute* attr) { if (attr->name() == SVGNames::gradientUnitsAttr) { |