From bce8199ddac4feecdee9c094fb8f75863cfa9652 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 9 Jul 2011 02:23:29 +0000 Subject: Remove the tq in front of these incorrectly TQt4-converted methods/data members: tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ksvg/plugin/backends/libart/LibartCanvas.cpp | 16 ++++++++-------- ksvg/plugin/backends/libart/LibartCanvasItems.cpp | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'ksvg/plugin/backends') diff --git a/ksvg/plugin/backends/libart/LibartCanvas.cpp b/ksvg/plugin/backends/libart/LibartCanvas.cpp index 05f37e82..8688c28d 100644 --- a/ksvg/plugin/backends/libart/LibartCanvas.cpp +++ b/ksvg/plugin/backends/libart/LibartCanvas.cpp @@ -214,7 +214,7 @@ void LibartCanvas::drawImage(TQImage image, SVGStylableImpl *style, const SVGMat TQRect screenBBox(x0, y0, x1 - x0 + 1, y1 - y0 + 1); - TQByteArray tqmask = SVGMaskElementImpl::tqmaskRectangle(tqshape, screenBBox); + TQByteArray tqmask = SVGMaskElementImpl::maskRectangle(tqshape, screenBBox); double affine[6]; KSVGHelper::matrixToAffine(matrix, affine); @@ -330,22 +330,22 @@ ArtSVP *LibartCanvas::clipSingleSVP(ArtSVP *svp, SVGShapeImpl *tqshape) else { SVGElementImpl *element = dynamic_cast(tqshape); - DOM::Node tqparentNode = element->parentNode(); + DOM::Node parentNode = element->parentNode(); - if(!tqparentNode.isNull()) + if(!parentNode.isNull()) { - SVGElementImpl *tqparent = element->ownerDoc()->getElementFromHandle(tqparentNode.handle()); + SVGElementImpl *tqparent = element->ownerDoc()->getElementFromHandle(parentNode.handle()); if(tqparent) { - SVGShapeImpl *tqparentShape = dynamic_cast(tqparent); + SVGShapeImpl *parentShape = dynamic_cast(tqparent); - if(tqparentShape) + if(parentShape) { // Clip against ancestor clipping paths - ArtSVP *tqparentClippedSvp = clipSingleSVP(clippedSvp, tqparentShape); + ArtSVP *parentClippedSvp = clipSingleSVP(clippedSvp, parentShape); art_svp_free(clippedSvp); - clippedSvp = tqparentClippedSvp; + clippedSvp = parentClippedSvp; } } } diff --git a/ksvg/plugin/backends/libart/LibartCanvasItems.cpp b/ksvg/plugin/backends/libart/LibartCanvasItems.cpp index 32dad452..83b62fb4 100644 --- a/ksvg/plugin/backends/libart/LibartCanvasItems.cpp +++ b/ksvg/plugin/backends/libart/LibartCanvasItems.cpp @@ -252,7 +252,7 @@ void LibartPainter::draw(LibartCanvas *canvas, _ArtSVP *svp, SVGStylableImpl *st TQRect screenBBox(x0, y0, x1 - x0 + 1, y1 - y0 + 1); - TQByteArray tqmask = SVGMaskElementImpl::tqmaskRectangle(tqshape, screenBBox); + TQByteArray tqmask = SVGMaskElementImpl::maskRectangle(tqshape, screenBBox); if(paintType(style) == SVG_PAINTTYPE_URI) { -- cgit v1.2.1