summaryrefslogtreecommitdiffstats
path: root/kpacman/board.h
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2020-08-21 14:42:44 +0200
committergregory guy <gregory-tde@laposte.net>2020-08-24 17:20:16 +0200
commita212e6154c5d748ef6068fc3539790d4c806bfc5 (patch)
tree75a5b5057a321546d4cb7b4ae9a220c492db7fbc /kpacman/board.h
parenta451e44f4ac9838eca11731780be425a1f46a0b8 (diff)
downloadtdepacman-a212e6154c5d748ef6068fc3539790d4c806bfc5.tar.gz
tdepacman-a212e6154c5d748ef6068fc3539790d4c806bfc5.zip
Remove some deprecated Qt2 stuff.
TQArray vs TQMemArray. Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'kpacman/board.h')
-rw-r--r--kpacman/board.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kpacman/board.h b/kpacman/board.h
index 9c19820..3b56973 100644
--- a/kpacman/board.h
+++ b/kpacman/board.h
@@ -1,7 +1,7 @@
#ifndef BOARD_H
#define BOARD_H
-#include <tqarray.h>
+#include <tqmemarray.h>
#include <tqstring.h>
#include <tqptrlist.h>
#include <tqrect.h>
@@ -37,7 +37,7 @@ enum Image { None, Intro, Demo, Level, File };
#define pacmanBit 0x0040
#define monsterBit 0x0100
-class Board : public TQArray<int>
+class Board : public TQMemArray<int>
{
public:
Board (int size);