diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | bce8199ddac4feecdee9c094fb8f75863cfa9652 (patch) | |
tree | b0521e39686b4b24960a9d83e72a9c09937a810c /kolourpaint/kpselection.cpp | |
parent | 03d51915bf86a00c5953817c89976b62785bb5a1 (diff) | |
download | tdegraphics-bce8199ddac4feecdee9c094fb8f75863cfa9652.tar.gz tdegraphics-bce8199ddac4feecdee9c094fb8f75863cfa9652.zip |
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
Diffstat (limited to 'kolourpaint/kpselection.cpp')
-rw-r--r-- | kolourpaint/kpselection.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kolourpaint/kpselection.cpp b/kolourpaint/kpselection.cpp index 8947f8d0..97865852 100644 --- a/kolourpaint/kpselection.cpp +++ b/kolourpaint/kpselection.cpp @@ -337,11 +337,11 @@ int kpSelection::size () const // public -TQBitmap kpSelection::tqmaskForOwnType (bool nullForRectangular) const +TQBitmap kpSelection::maskForOwnType (bool nullForRectangular) const { if (!m_rect.isValid ()) { - kdError () << "kpSelection::tqmaskForOwnType() boundingRect invalid" << endl; + kdError () << "kpSelection::maskForOwnType() boundingRect invalid" << endl; return TQBitmap (); } @@ -351,17 +351,17 @@ TQBitmap kpSelection::tqmaskForOwnType (bool nullForRectangular) const if (nullForRectangular) return TQBitmap (); - TQBitmap tqmaskBitmap (m_rect.width (), m_rect.height ()); - tqmaskBitmap.fill (TQt::color1/*opaque*/); - return tqmaskBitmap; + TQBitmap maskBitmap (m_rect.width (), m_rect.height ()); + maskBitmap.fill (TQt::color1/*opaque*/); + return maskBitmap; } - TQBitmap tqmaskBitmap (m_rect.width (), m_rect.height ()); - tqmaskBitmap.fill (TQt::color0/*transparent*/); + TQBitmap maskBitmap (m_rect.width (), m_rect.height ()); + maskBitmap.fill (TQt::color0/*transparent*/); TQPainter painter; - painter.begin (&tqmaskBitmap); + painter.begin (&maskBitmap); painter.setPen (TQt::color1)/*opaque*/; painter.setBrush (TQt::color1/*opaque*/); @@ -379,7 +379,7 @@ TQBitmap kpSelection::tqmaskForOwnType (bool nullForRectangular) const painter.end (); - return tqmaskBitmap; + return maskBitmap; } @@ -615,11 +615,11 @@ static TQRgb mostContrastingRGB (TQRgb val) } // private -static void drawTextLines (TQPainter *painter, TQPainter *tqmaskPainter, +static void drawTextLines (TQPainter *painter, TQPainter *maskPainter, const TQRect &rect, const TQValueVector <TQString> &textLines) { - if (!painter->clipRegion ().isEmpty () || !tqmaskPainter->clipRegion ().isEmpty ()) + if (!painter->clipRegion ().isEmpty () || !maskPainter->clipRegion ().isEmpty ()) { // TODO: fix esp. before making method public kdError () << "kpselection.cpp:drawTextLines() can't deal with existing painter clip regions" << endl; @@ -632,8 +632,8 @@ static void drawTextLines (TQPainter *painter, TQPainter *tqmaskPainter, if (painter->isActive ()) \ painter->cmd; \ \ - if (tqmaskPainter->isActive ()) \ - tqmaskPainter->cmd; \ + if (maskPainter->isActive ()) \ + maskPainter->cmd; \ } |