diff options
Diffstat (limited to 'WebCore/svg/SVGFELightElement.cpp')
-rw-r--r-- | WebCore/svg/SVGFELightElement.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/WebCore/svg/SVGFELightElement.cpp b/WebCore/svg/SVGFELightElement.cpp index 5975033..dc10cf9 100644 --- a/WebCore/svg/SVGFELightElement.cpp +++ b/WebCore/svg/SVGFELightElement.cpp @@ -30,13 +30,9 @@ namespace WebCore { -SVGFELightElement::SVGFELightElement(const QualifiedName& tagName, Document* doc) - : SVGElement(tagName, doc) - , m_specularExponent(1.0f) -{ -} - -SVGFELightElement::~SVGFELightElement() +SVGFELightElement::SVGFELightElement(const QualifiedName& tagName, Document* document) + : SVGElement(tagName, document) + , m_specularExponent(1) { } |