From 503fddb48f2229ecc6ed6930a99c4d740ff979e5 Mon Sep 17 00:00:00 2001 From: gregory guy Date: Mon, 17 Aug 2020 20:03:11 +0200 Subject: Second step, convert to tqt3 libraries. Signed-off-by: gregory guy --- kpacman/board.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'kpacman/board.h') diff --git a/kpacman/board.h b/kpacman/board.h index fffde95..061cbd8 100644 --- a/kpacman/board.h +++ b/kpacman/board.h @@ -1,10 +1,10 @@ #ifndef BOARD_H #define BOARD_H -#include -#include -#include -#include +#include +#include +#include +#include #define OUT -1 @@ -37,12 +37,12 @@ enum Image { None, Intro, Demo, Level, File }; #define pacmanBit 0x0040 #define monsterBit 0x0100 -class Board : public QArray +class Board : public TQArray { public: Board (int size); ~Board() {}; - void init(Image image, QString levelName=0); + void init(Image image, TQString levelName=0); void setup(const uchar *buf); void set(int pos, Square sq, int m = 0); @@ -78,8 +78,8 @@ private: bool inBounds(int pos); int sz; // size of board - QString map; - QString mapName; // Filename of the latest loaded map + TQString map; + TQString mapName; // Filename of the latest loaded map int prisonEntry; // position of prisonentry int prisonExit; // position of prisonexit -- cgit v1.2.1