summaryrefslogtreecommitdiffstats
path: root/ksnake/basket.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
commit576eb4299a00bc053db35414406f46372a0f70f2 (patch)
tree4c030922d533821db464af566188e7d40cc8848c /ksnake/basket.cpp
parent0718336b6017d1a4fc1d626544180a5a2a29ddec (diff)
downloadtdegames-576eb4299a00bc053db35414406f46372a0f70f2.tar.gz
tdegames-576eb4299a00bc053db35414406f46372a0f70f2.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1157643 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksnake/basket.cpp')
-rw-r--r--ksnake/basket.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/ksnake/basket.cpp b/ksnake/basket.cpp
index c03b1deb..138336cd 100644
--- a/ksnake/basket.cpp
+++ b/ksnake/basket.cpp
@@ -23,8 +23,8 @@
* Boston, MA 02110-1301, USA.
*/
-#include <qtimer.h>
-#include <qptrlist.h>
+#include <tqtimer.h>
+#include <tqptrlist.h>
#include "board.h"
#include "basket.h"
@@ -35,7 +35,7 @@ Kaffee::Kaffee(int pos, int r1, int r2)
p = pos;
t = Red;
r = r2;
- QTimer::singleShot( r1, this, SLOT(golden()) );
+ TQTimer::singleShot( r1, this, TQT_SLOT(golden()) );
dirty = true;
}
@@ -43,14 +43,14 @@ void Kaffee::golden()
{
dirty = true;
t = (t == Red ? Golden : Red);
- QTimer::singleShot( r, this, SLOT(golden()) );
+ TQTimer::singleShot( r, this, TQT_SLOT(golden()) );
}
Basket::Basket(Board *b, PixServer *p)
{
board = b;
pixServer = p;
- list = new QPtrList<Kaffee>;
+ list = new TQPtrList<Kaffee>;
list->setAutoDelete( true );
}