diff options
Diffstat (limited to 'WebCore/svg/SVGFEComponentTransferElement.cpp')
-rw-r--r-- | WebCore/svg/SVGFEComponentTransferElement.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/WebCore/svg/SVGFEComponentTransferElement.cpp b/WebCore/svg/SVGFEComponentTransferElement.cpp index 9f85a0b..a99e74c 100644 --- a/WebCore/svg/SVGFEComponentTransferElement.cpp +++ b/WebCore/svg/SVGFEComponentTransferElement.cpp @@ -33,13 +33,14 @@ namespace WebCore { -SVGFEComponentTransferElement::SVGFEComponentTransferElement(const QualifiedName& tagName, Document* doc) - : SVGFilterPrimitiveStandardAttributes(tagName, doc) +inline SVGFEComponentTransferElement::SVGFEComponentTransferElement(const QualifiedName& tagName, Document* document) + : SVGFilterPrimitiveStandardAttributes(tagName, document) { } -SVGFEComponentTransferElement::~SVGFEComponentTransferElement() +PassRefPtr<SVGFEComponentTransferElement> SVGFEComponentTransferElement::create(const QualifiedName& tagName, Document* document) { + return adoptRef(new SVGFEComponentTransferElement(tagName, document)); } void SVGFEComponentTransferElement::parseMappedAttribute(Attribute* attr) |