diff options
Diffstat (limited to 'ksvg/dom/SVGElementInstance.cc')
-rw-r--r-- | ksvg/dom/SVGElementInstance.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ksvg/dom/SVGElementInstance.cc b/ksvg/dom/SVGElementInstance.cc index 95b24964..9bc027c0 100644 --- a/ksvg/dom/SVGElementInstance.cc +++ b/ksvg/dom/SVGElementInstance.cc @@ -78,10 +78,10 @@ SVGUseElement SVGElementInstance::correspondingUseElement() const return SVGUseElement(impl->correspondingUseElement()); } -SVGElementInstance SVGElementInstance::tqparentNode() const +SVGElementInstance SVGElementInstance::parentNode() const { if(!impl) return SVGElementInstance(0); - return SVGElementInstance(impl->tqparentNode()); + return SVGElementInstance(impl->parentNode()); } SVGElementInstanceList SVGElementInstance::childNodes() const |