summaryrefslogtreecommitdiffstats
path: root/src/dom/svgimpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dom/svgimpl.cpp')
-rw-r--r--src/dom/svgimpl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dom/svgimpl.cpp b/src/dom/svgimpl.cpp
index 87f43af81..4372e1b87 100644
--- a/src/dom/svgimpl.cpp
+++ b/src/dom/svgimpl.cpp
@@ -777,7 +777,7 @@ DOMString SVGSVGElementImpl::getAttribute(const DOMString& name)
else if (name == "y")
s = d2s(y.getAnimVal().getValue());
else
- s = SVGElement::getAttribute(name);
+ s = SVGElementImpl::getAttribute(name);
return s;
}
@@ -792,7 +792,7 @@ void SVGSVGElementImpl::setAttribute(const DOMString& name,
x.getAnimVal().setValue(s2d(value));
else if (name == "y")
y.getAnimVal().setValue(s2d(value));
- SVGElement::setAttribute(name, value);
+ SVGElementImpl::setAttribute(name, value);
}