| Index: Source/core/svg/SVGFEMorphologyElement.cpp
|
| diff --git a/Source/core/svg/SVGFEMorphologyElement.cpp b/Source/core/svg/SVGFEMorphologyElement.cpp
|
| index 21f3c996d63adf2072d1d90612bd3538afd72039..44bc060b1ac80008802e50e9f175f4e8502117f7 100644
|
| --- a/Source/core/svg/SVGFEMorphologyElement.cpp
|
| +++ b/Source/core/svg/SVGFEMorphologyElement.cpp
|
| @@ -38,7 +38,7 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<MorphologyO
|
| return entries;
|
| }
|
|
|
| -SVGFEMorphologyElement::SVGFEMorphologyElement(Document& document)
|
| +inline SVGFEMorphologyElement::SVGFEMorphologyElement(Document& document)
|
| : SVGFilterPrimitiveStandardAttributes(SVGNames::feMorphologyTag, document)
|
| , m_radius(SVGAnimatedNumberOptionalNumber::create(this, SVGNames::radiusAttr))
|
| , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create()))
|
| @@ -51,6 +51,8 @@ SVGFEMorphologyElement::SVGFEMorphologyElement(Document& document)
|
| addToPropertyMap(m_svgOperator);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGFEMorphologyElement)
|
| +
|
| void SVGFEMorphologyElement::setRadius(float x, float y)
|
| {
|
| radiusX()->baseValue()->setValue(x);
|
|
|