summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_iconlistitem.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit2af11d9103e8eb8aa289bc1e13bbeb995ce627c6 (patch)
tree33f627862caa5ef77ec2993f9c0b76cac73d7ab4 /ksquirrel/sq_iconlistitem.cpp
parent79128018a1b71d8fa9218e925a2409abb6fce7d2 (diff)
downloadksquirrel-2af11d9103e8eb8aa289bc1e13bbeb995ce627c6.tar.gz
ksquirrel-2af11d9103e8eb8aa289bc1e13bbeb995ce627c6.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ksquirrel@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksquirrel/sq_iconlistitem.cpp')
-rw-r--r--ksquirrel/sq_iconlistitem.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ksquirrel/sq_iconlistitem.cpp b/ksquirrel/sq_iconlistitem.cpp
index 821e7cd..7bf06b3 100644
--- a/ksquirrel/sq_iconlistitem.cpp
+++ b/ksquirrel/sq_iconlistitem.cpp
@@ -58,14 +58,14 @@ const TQPixmap& SQ_IconListItem::defaultPixmap()
p.drawRect(0, 0, pix->width(), pix->height());
p.end();
- TQBitmap tqmask(pix->width(), pix->height(), true);
- tqmask.fill(TQt::black);
- p.begin(&tqmask);
+ TQBitmap mask(pix->width(), pix->height(), true);
+ mask.fill(TQt::black);
+ p.begin(&mask);
p.setPen(TQt::white);
p.drawRect(0, 0, pix->width(), pix->height());
p.end();
- pix->setMask(tqmask);
+ pix->setMask(mask);
}
return *pix;