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 /kspaceduel | |
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 'kspaceduel')
-rw-r--r-- | kspaceduel/general.ui | 2 | ||||
-rw-r--r-- | kspaceduel/mainview.cpp | 8 | ||||
-rw-r--r-- | kspaceduel/mainview.h | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/kspaceduel/general.ui b/kspaceduel/general.ui index 71b74f1f..05d5ba83 100644 --- a/kspaceduel/general.ui +++ b/kspaceduel/general.ui @@ -333,5 +333,5 @@ <slot>setEnabled(bool)</slot> </connection> </connections> -<tqlayoutdefaults spacing="6" margin="11"/> +<layoutdefaults spacing="6" margin="11"/> </UI> diff --git a/kspaceduel/mainview.cpp b/kspaceduel/mainview.cpp index ea17594d..8204ffd0 100644 --- a/kspaceduel/mainview.cpp +++ b/kspaceduel/mainview.cpp @@ -1002,12 +1002,12 @@ void MyMainView::closeSettings(){ } TQCanvasPixmapArray* MyMainView::loadOldPixmapSequence(const TQString& datapattern, - const TQString& tqmaskpattern, int framecount) + const TQString& maskpattern, int framecount) { int image; TQPtrList<TQPixmap> pixmaplist; TQPtrList<TQPoint> pointlist; - TQString dataname, tqmaskname; + TQString dataname, maskname; TQPixmap *pix; TQBitmap *bitmap; int hotx=0, hoty=0; @@ -1017,7 +1017,7 @@ TQCanvasPixmapArray* MyMainView::loadOldPixmapSequence(const TQString& datapatte { // #### Why is this a TQString?? dataname.sprintf( datapattern.ascii(), image ); - tqmaskname.sprintf( tqmaskpattern.ascii(), image ); + maskname.sprintf( maskpattern.ascii(), image ); TQFile file(dataname); if( file.open( IO_ReadOnly ) ) @@ -1039,7 +1039,7 @@ TQCanvasPixmapArray* MyMainView::loadOldPixmapSequence(const TQString& datapatte } pix = new TQPixmap( dataname ); - bitmap = new TQBitmap( tqmaskname ); + bitmap = new TQBitmap( maskname ); pix->setMask( *bitmap ); pixmaplist.append( pix ); diff --git a/kspaceduel/mainview.h b/kspaceduel/mainview.h index ab4a4fcc..ec182408 100644 --- a/kspaceduel/mainview.h +++ b/kspaceduel/mainview.h @@ -52,7 +52,7 @@ protected: virtual void keyReleaseEvent(TQKeyEvent *event); SConfig modifyConfig(SConfig conf); TQCanvasPixmapArray* loadOldPixmapSequence(const TQString& datapattern, - const TQString& tqmaskpattern, int framecount=1); + const TQString& maskpattern, int framecount=1); void moveShips(); void moveBullets(); void moveMines(); |