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