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 --- kpdf/ui/pageviewutils.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kpdf/ui/pageviewutils.cpp') diff --git a/kpdf/ui/pageviewutils.cpp b/kpdf/ui/pageviewutils.cpp index ed5c637a..369bcd83 100644 --- a/kpdf/ui/pageviewutils.cpp +++ b/kpdf/ui/pageviewutils.cpp @@ -93,10 +93,10 @@ void PageViewMessage::display( const TQString & message, Icon icon, int duration resize( tqgeometry.size() ); // create and set transparency tqmask - TQPainter tqmaskPainter( &tqmask); + TQPainter maskPainter( &tqmask); tqmask.fill( TQt::black ); - tqmaskPainter.setBrush( TQt::white ); - tqmaskPainter.drawRoundRect( tqgeometry, 1600 / tqgeometry.width(), 1600 / tqgeometry.height() ); + maskPainter.setBrush( TQt::white ); + maskPainter.drawRoundRect( tqgeometry, 1600 / tqgeometry.width(), 1600 / tqgeometry.height() ); setMask( tqmask ); // draw background @@ -119,7 +119,7 @@ void PageViewMessage::display( const TQString & message, Icon icon, int duration // if the tqlayout is RtL, we can move it to the right place only after we // know how much size it will take if ( TQApplication::reverseLayout() ) - move( tqparentWidget()->width() - tqgeometry.width() - 10, 10 ); + move( parentWidget()->width() - tqgeometry.width() - 10, 10 ); // show widget and schedule a tqrepaint show(); -- cgit v1.2.1