summaryrefslogtreecommitdiffstats
path: root/amor/amorbubble.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit6537a93fb5bfe88e6a3e418f7445dd1202672f1d (patch)
treed52fba251fca452781dd86474bc0b9010b9187cc /amor/amorbubble.cpp
parent9919b3b345f7613bb0f951648cf5b160675f4305 (diff)
downloadtdetoys-6537a93fb5bfe88e6a3e418f7445dd1202672f1d.tar.gz
tdetoys-6537a93fb5bfe88e6a3e418f7445dd1202672f1d.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/kdetoys@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'amor/amorbubble.cpp')
-rw-r--r--amor/amorbubble.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/amor/amorbubble.cpp b/amor/amorbubble.cpp
index 314eba5..2860ccd 100644
--- a/amor/amorbubble.cpp
+++ b/amor/amorbubble.cpp
@@ -144,10 +144,10 @@ void AmorBubble::calcGeometry()
// create and apply the tqshape tqmask
mMask.resize(w, h);
mMask.fill(color0);
- TQPainter tqmaskPainter(&mMask);
- tqmaskPainter.setPen(color1);
- tqmaskPainter.setBrush(color1);
- drawBubble(tqmaskPainter);
+ TQPainter maskPainter(&mMask);
+ maskPainter.setPen(color1);
+ maskPainter.setBrush(color1);
+ drawBubble(maskPainter);
XShapeCombineMask( x11Display(), winId(), ShapeBounding, 0, 0,
mMask.handle(), ShapeSet );
}