summaryrefslogtreecommitdiffstats
path: root/src/dom/svgimpl.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2013-09-21 09:14:16 +0000
committerJohan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl>2013-09-21 09:14:16 +0000
commitcb3a1d4a449ebf0917a81cc0e80071a4c557ea39 (patch)
tree26e996a65d90c598802480e5395418faf4dbacd3 /src/dom/svgimpl.cpp
parentpartial 2geom update, fixes linker errors (diff)
downloadinkscape-cb3a1d4a449ebf0917a81cc0e80071a4c557ea39.tar.gz
inkscape-cb3a1d4a449ebf0917a81cc0e80071a4c557ea39.zip
fix Windows build
(bzr r12559)
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);
}