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 | c406d61deefc0c3e3173ebe77bfb38a1bc453ce7 (patch) | |
tree | 12ccf93b39a8eedba87ebbd7447d33e5ab59108a /kmines | |
parent | 373fe6f2b90bcd2e452f16115a4950a4b46c1f34 (diff) | |
download | tdegames-c406d61deefc0c3e3173ebe77bfb38a1bc453ce7.tar.gz tdegames-c406d61deefc0c3e3173ebe77bfb38a1bc453ce7.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/kdegames@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmines')
-rw-r--r-- | kmines/frame.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmines/frame.cpp b/kmines/frame.cpp index 7c712383..b5c154b0 100644 --- a/kmines/frame.cpp +++ b/kmines/frame.cpp @@ -41,14 +41,14 @@ void FieldFrame::adjustSize() TQBitmap tqmask; for (uint i=0; i<Nb_Pixmap_Types; i++) { - TQPixmap tqmask_pm = tqmask; - drawPixmap(tqmask_pm, (PixmapType)i, true); + TQPixmap mask_pm = tqmask; + drawPixmap(mask_pm, (PixmapType)i, true); drawPixmap(_pixmaps[i], (PixmapType)i, false); _pixmaps[i].setMask(tqmask); } for (uint i=0; i<Nb_Advised; i++) { - TQPixmap tqmask_pm = tqmask; - drawAdvised(tqmask_pm, i, true); + TQPixmap mask_pm = tqmask; + drawAdvised(mask_pm, i, true); drawAdvised(_advised[i], i, false); _advised[i].setMask(tqmask); } |