diff options
Diffstat (limited to 'kreversi/qreversigameview.cpp')
-rw-r--r-- | kreversi/qreversigameview.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kreversi/qreversigameview.cpp b/kreversi/qreversigameview.cpp index 02f1ad3d..72dc9fb5 100644 --- a/kreversi/qreversigameview.cpp +++ b/kreversi/qreversigameview.cpp @@ -51,7 +51,7 @@ #include <tqfont.h> #include <tdeapplication.h> -#include <kstandarddirs.h> +#include <tdestandarddirs.h> #include <tdeconfig.h> #include <knotifyclient.h> #include <tdelocale.h> @@ -135,15 +135,15 @@ QReversiGameView::QReversiGameView(TQWidget *parent, QReversiGame *game) m_humanColor = Nobody; // Connect the game to the view. - connect(m_game, TQT_SIGNAL(sig_newGame()), this, TQT_SLOT(newGame())); - connect(m_game, TQT_SIGNAL(sig_move(uint, Move&)), - this, TQT_SLOT(moveMade(uint, Move&))); - connect(m_game, TQT_SIGNAL(sig_update()), this, TQT_SLOT(updateView())); + connect(m_game, TQ_SIGNAL(sig_newGame()), this, TQ_SLOT(newGame())); + connect(m_game, TQ_SIGNAL(sig_move(uint, Move&)), + this, TQ_SLOT(moveMade(uint, Move&))); + connect(m_game, TQ_SIGNAL(sig_update()), this, TQ_SLOT(updateView())); // The sig_gameOver signal is not used by the view. // Reemit the signal from the board. - connect(m_boardView, TQT_SIGNAL(signalSquareClicked(int, int)), - this, TQT_SLOT(squareClicked(int, int))); + connect(m_boardView, TQ_SIGNAL(signalSquareClicked(int, int)), + this, TQ_SLOT(squareClicked(int, int))); } |