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/kpdocument.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/kpdocument.cpp')
-rw-r--r-- | kolourpaint/kpdocument.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kolourpaint/kpdocument.cpp b/kolourpaint/kpdocument.cpp index 2886d077..9b7d5936 100644 --- a/kolourpaint/kpdocument.cpp +++ b/kolourpaint/kpdocument.cpp @@ -1235,7 +1235,7 @@ void kpDocument::setSelection (const kpSelection &selection) } // public -TQPixmap kpDocument::getSelectedPixmap (const TQBitmap &tqmaskBitmap_) const +TQPixmap kpDocument::getSelectedPixmap (const TQBitmap &maskBitmap_) const { kpSelection *sel = selection (); @@ -1259,13 +1259,13 @@ TQPixmap kpDocument::getSelectedPixmap (const TQBitmap &tqmaskBitmap_) const } - TQBitmap tqmaskBitmap = tqmaskBitmap_; - if (tqmaskBitmap.isNull () && + TQBitmap maskBitmap = maskBitmap_; + if (maskBitmap.isNull () && !sel->isRectangular ()) { - tqmaskBitmap = sel->tqmaskForOwnType (); + maskBitmap = sel->maskForOwnType (); - if (tqmaskBitmap.isNull ()) + if (maskBitmap.isNull ()) { kdError () << "kpDocument::getSelectedPixmap() could not get tqmask" << endl; return TQPixmap (); @@ -1275,7 +1275,7 @@ TQPixmap kpDocument::getSelectedPixmap (const TQBitmap &tqmaskBitmap_) const TQPixmap selPixmap = getPixmapAt (boundingRect); - if (!tqmaskBitmap.isNull ()) + if (!maskBitmap.isNull ()) { // Src Dest = Result // ----------------- @@ -1286,8 +1286,8 @@ TQPixmap kpDocument::getSelectedPixmap (const TQBitmap &tqmaskBitmap_) const TQBitmap selMaskBitmap = kpPixmapFX::getNonNullMask (selPixmap); bitBlt (&selMaskBitmap, TQPoint (0, 0), - &tqmaskBitmap, - TQRect (0, 0, tqmaskBitmap.width (), tqmaskBitmap.height ()), + &maskBitmap, + TQRect (0, 0, maskBitmap.width (), maskBitmap.height ()), TQt::AndROP); selPixmap.setMask (selMaskBitmap); } @@ -1328,14 +1328,14 @@ bool kpDocument::selectionPullFromDocument (const kpColor &backgroundColor) // Figure out tqmask for non-rectangular selections // - TQBitmap tqmaskBitmap = sel->tqmaskForOwnType (true/*return null bitmap for rectangular*/); + TQBitmap maskBitmap = sel->maskForOwnType (true/*return null bitmap for rectangular*/); // // Get selection pixmap from document // - TQPixmap selPixmap = getSelectedPixmap (tqmaskBitmap); + TQPixmap selPixmap = getSelectedPixmap (maskBitmap); if (vm) vm->setQueueUpdates (); |