From 74c05bbf9d92e43a6cf3799355b5f3598884409e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 19 Dec 2011 11:56:05 -0600 Subject: Remove additional unneeded tq method conversions --- ksvg/impl/SVGEcma.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ksvg/impl/SVGEcma.cc') diff --git a/ksvg/impl/SVGEcma.cc b/ksvg/impl/SVGEcma.cc index 111b2887..87eca6e0 100644 --- a/ksvg/impl/SVGEcma.cc +++ b/ksvg/impl/SVGEcma.cc @@ -169,9 +169,9 @@ void removeItem(ExecState *exec, DOM::Node &node) SVGDocumentImpl *doc = KSVG::Window::retrieveActive(exec)->doc(); // Update canvas - SVGShapeImpl *tqshape = dynamic_cast(doc->getElementFromHandle(node.handle())); - if(tqshape && tqshape->item()) - doc->canvas()->removeItem(tqshape->item()); + SVGShapeImpl *shape = dynamic_cast(doc->getElementFromHandle(node.handle())); + if(shape && shape->item()) + doc->canvas()->removeItem(shape->item()); } // parseXML + getURL() need all these 5 functions to work properly -- cgit v1.2.1