diff options
Diffstat (limited to 'kreversi/Engine.h')
-rw-r--r-- | kreversi/Engine.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kreversi/Engine.h b/kreversi/Engine.h index a84be895..4b895080 100644 --- a/kreversi/Engine.h +++ b/kreversi/Engine.h @@ -124,9 +124,9 @@ #include "Game.h" #include "Move.h" #include "Score.h" -#include <qmemarray.h> +#include <tqmemarray.h> #include <sys/times.h> -#include <qbitarray.h> +#include <tqbitarray.h> // Class ULONG64 is used as a bitmap for the squares. @@ -134,7 +134,7 @@ #if defined(__GNUC__) #define ULONG64 unsigned long long int #else -class ULONG64 : public QBitArray { +class ULONG64 : public TQBitArray { public: ULONG64(); ULONG64( unsigned int ); @@ -171,7 +171,7 @@ public: void Push(int x, int y); private: - QMemArray<SquareStackEntry> m_squarestack; + TQMemArray<SquareStackEntry> m_squarestack; int m_top; }; |