summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGFECompositeElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGFECompositeElement.cpp')
-rw-r--r--WebCore/svg/SVGFECompositeElement.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/WebCore/svg/SVGFECompositeElement.cpp b/WebCore/svg/SVGFECompositeElement.cpp
index dfa335d..f658632 100644
--- a/WebCore/svg/SVGFECompositeElement.cpp
+++ b/WebCore/svg/SVGFECompositeElement.cpp
@@ -28,14 +28,15 @@
namespace WebCore {
-SVGFECompositeElement::SVGFECompositeElement(const QualifiedName& tagName, Document* doc)
- : SVGFilterPrimitiveStandardAttributes(tagName, doc)
+inline SVGFECompositeElement::SVGFECompositeElement(const QualifiedName& tagName, Document* document)
+ : SVGFilterPrimitiveStandardAttributes(tagName, document)
, m__operator(FECOMPOSITE_OPERATOR_OVER)
{
}
-SVGFECompositeElement::~SVGFECompositeElement()
+PassRefPtr<SVGFECompositeElement> SVGFECompositeElement::create(const QualifiedName& tagName, Document* document)
{
+ return adoptRef(new SVGFECompositeElement(tagName, document));
}
void SVGFECompositeElement::parseMappedAttribute(Attribute* attr)