diff options
Diffstat (limited to 'WebCore/svg/SVGFEFuncAElement.cpp')
-rw-r--r-- | WebCore/svg/SVGFEFuncAElement.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/WebCore/svg/SVGFEFuncAElement.cpp b/WebCore/svg/SVGFEFuncAElement.cpp index 3722826..8967efe 100644 --- a/WebCore/svg/SVGFEFuncAElement.cpp +++ b/WebCore/svg/SVGFEFuncAElement.cpp @@ -25,13 +25,14 @@ namespace WebCore { -SVGFEFuncAElement::SVGFEFuncAElement(const QualifiedName& tagName, Document* doc) - : SVGComponentTransferFunctionElement(tagName, doc) +inline SVGFEFuncAElement::SVGFEFuncAElement(const QualifiedName& tagName, Document* document) + : SVGComponentTransferFunctionElement(tagName, document) { } -SVGFEFuncAElement::~SVGFEFuncAElement() +PassRefPtr<SVGFEFuncAElement> SVGFEFuncAElement::create(const QualifiedName& tagName, Document* document) { + return adoptRef(new SVGFEFuncAElement(tagName, document)); } } |