diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 15:12:46 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 15:12:46 -0600 |
commit | 58a97ed3af5e4df6c4a58d043b0c267bd97056a9 (patch) | |
tree | 5a2fde6842fd422cae2d8670d382be965098cc32 /kreversi/kreversi.h | |
parent | 2ce15ee76fd2d9d18a63c035a0f5b00b94c60cdc (diff) | |
download | tdegames-58a97ed3af5e4df6c4a58d043b0c267bd97056a9.tar.gz tdegames-58a97ed3af5e4df6c4a58d043b0c267bd97056a9.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kreversi/kreversi.h')
-rw-r--r-- | kreversi/kreversi.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kreversi/kreversi.h b/kreversi/kreversi.h index f702189b..efdbc4e7 100644 --- a/kreversi/kreversi.h +++ b/kreversi/kreversi.h @@ -53,7 +53,7 @@ class TQLabel; -class KAction; +class TDEAction; class KReversi : public KZoomMainWindow @@ -88,7 +88,7 @@ public: private: // Initialisation - void createKActions(); + void createTDEActions(); // View functions. TQString getPlayerName(); @@ -105,7 +105,7 @@ private: private slots: - // Slots for KActions. + // Slots for TDEActions. void slotNewGame(); void slotOpenGame(); void slotSave(); @@ -113,7 +113,7 @@ private slots: void slotUndo(); void slotSwitchSides(); - // Interrupt and continue the engines thinking (also KActions). + // Interrupt and continue the engines thinking (also TDEActions). void slotInterrupt(); void slotContinue(); void slotShowLastMove(); @@ -151,11 +151,11 @@ private: private: // Some Actions that need to be manipulated. - KAction *stopAction; - KAction *continueAction; + TDEAction *stopAction; + TDEAction *continueAction; - KToggleAction *showLastMoveAction; - KToggleAction *showLegalMovesAction; + TDEToggleAction *showLastMoveAction; + TDEToggleAction *showLegalMovesAction; // The game itself and game properties QReversiGame *m_game; // The main document - the game |