diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:56:05 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:56:05 -0600 |
commit | 74c05bbf9d92e43a6cf3799355b5f3598884409e (patch) | |
tree | 9371e52e1564e08fd280f28e49981ffeb881b9d2 /ksvg/impl/SVGLocatableImpl.cc | |
parent | 45f529de247fc4b3662f6b474abe03fe904306ec (diff) | |
download | tdegraphics-74c05bbf9d92e43a6cf3799355b5f3598884409e.tar.gz tdegraphics-74c05bbf9d92e43a6cf3799355b5f3598884409e.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'ksvg/impl/SVGLocatableImpl.cc')
-rw-r--r-- | ksvg/impl/SVGLocatableImpl.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ksvg/impl/SVGLocatableImpl.cc b/ksvg/impl/SVGLocatableImpl.cc index 63384d7e..0ae143fa 100644 --- a/ksvg/impl/SVGLocatableImpl.cc +++ b/ksvg/impl/SVGLocatableImpl.cc @@ -92,13 +92,13 @@ void SVGLocatableImpl::updateCachedScreenCTM(const SVGMatrixImpl *parentScreenCT // Notify the element onScreenCTMUpdated(); - SVGShapeImpl *tqshape = dynamic_cast<SVGShapeImpl *>(this); + SVGShapeImpl *shape = dynamic_cast<SVGShapeImpl *>(this); - if(tqshape) + if(shape) { // TODO: Update due to matrix animations - //if(tqshape->item()) - // tqshape->item()->update(updateReason); + //if(shape->item()) + // shape->item()->update(updateReason); SVGElementImpl *element = dynamic_cast<SVGElementImpl *>(this); @@ -119,9 +119,9 @@ void SVGLocatableImpl::checkCachedScreenCTM(const SVGMatrixImpl *parentScreenCTM if(m_cachedScreenCTMIsValid) { SVGElementImpl *element = dynamic_cast<SVGElementImpl *>(this); - SVGShapeImpl *tqshape = dynamic_cast<SVGShapeImpl *>(this); + SVGShapeImpl *shape = dynamic_cast<SVGShapeImpl *>(this); - if(tqshape) + if(shape) { DOM::Node node = element->firstChild(); for(; !node.isNull(); node = node.nextSibling()) @@ -184,9 +184,9 @@ Value SVGLocatableImplProtoFunc::call(ExecState *exec, Object &thisObj, const Li return container->getBBox()->cache(exec); else { - SVGShapeImpl *tqshape = dynamic_cast<SVGShapeImpl *>(obj); - if(tqshape) - return tqshape->getBBox()->cache(exec); + SVGShapeImpl *shape = dynamic_cast<SVGShapeImpl *>(obj); + if(shape) + return shape->getBBox()->cache(exec); else return obj->getBBox()->cache(exec); } |