summaryrefslogtreecommitdiffstats
path: root/kreversi/board.h
diff options
context:
space:
mode:
Diffstat (limited to 'kreversi/board.h')
-rw-r--r--kreversi/board.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/kreversi/board.h b/kreversi/board.h
index f5efc739..59c9463c 100644
--- a/kreversi/board.h
+++ b/kreversi/board.h
@@ -49,18 +49,19 @@
class KConfig;
-class QReversiGame;
+class TQReversiGame;
// The class Board is the visible Reversi Board widget.
//
-class QReversiBoardView : public TQWidget {
+class TQReversiBoardView : public TQWidget {
Q_OBJECT
+ TQ_OBJECT
public:
- QReversiBoardView(TQWidget *parent, QReversiGame *game);
- ~QReversiBoardView();
+ TQReversiBoardView(TQWidget *tqparent, TQReversiGame *game);
+ ~TQReversiBoardView();
// starts all: emits some signal, so it can't be called from
// constructor
@@ -124,7 +125,7 @@ private:
private:
- QReversiGame *m_krgame; // Pointer to the game object (not owner).
+ TQReversiGame *m_krgame; // Pointer to the game object (not owner).
// The background of the board - a color and a pixmap.
TQColor bgColor;