From 5027dfec5092217f70492dd6712059e46b21d003 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 (cherry picked from commit 74c05bbf9d92e43a6cf3799355b5f3598884409e) --- ksvg/impl/SVGHelperImpl.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ksvg/impl/SVGHelperImpl.cc') diff --git a/ksvg/impl/SVGHelperImpl.cc b/ksvg/impl/SVGHelperImpl.cc index 0a5f1093..7378b8f4 100644 --- a/ksvg/impl/SVGHelperImpl.cc +++ b/ksvg/impl/SVGHelperImpl.cc @@ -58,13 +58,13 @@ void SVGHelperImpl::updateItem(KJS::ExecState *exec, const DOM::Node node) SVGDocumentImpl *doc = Window::retrieveActive(exec)->doc(); // Update canvas, recursively if needed - SVGShapeImpl *tqshape = dynamic_cast(doc->getElementFromHandle(node.handle())); + SVGShapeImpl *shape = dynamic_cast(doc->getElementFromHandle(node.handle())); - if(tqshape && tqshape->item()) + if(shape && shape->item()) { - tqshape->item()->update(UPDATE_TRANSFORM); - tqshape->item()->draw(); - tqshape->blit(doc->canvas()); + shape->item()->update(UPDATE_TRANSFORM); + shape->item()->draw(); + shape->blit(doc->canvas()); } if(const_cast(node).hasChildNodes()) -- cgit v1.2.1