summaryrefslogtreecommitdiffstats
path: root/ksnake/basket.cpp
diff options
context:
space:
mode:
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 );
}