diff options
author | Michele Calgaro <[email protected]> | 2023-07-20 15:06:19 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-21 10:15:49 +0900 |
commit | 1d0e7307b157b3d63d402c17b0ffb07bf3a7eb57 (patch) | |
tree | bbbb22f065ffc1a984d8ae889a7de8a5bb27e7a4 /konquest | |
parent | 15f92066f51b7a50f516a10f63344497fef633cc (diff) | |
download | tdegames-1d0e7307b157b3d63d402c17b0ffb07bf3a7eb57.tar.gz tdegames-1d0e7307b157b3d63d402c17b0ffb07bf3a7eb57.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit bc6061ff9e83d8032611908039c3b399aedabf88)
Diffstat (limited to 'konquest')
-rw-r--r-- | konquest/gameboard.h | 2 | ||||
-rw-r--r-- | konquest/gamecore.h | 6 | ||||
-rw-r--r-- | konquest/gameenddlg.h | 2 | ||||
-rw-r--r-- | konquest/int_validator.h | 2 | ||||
-rw-r--r-- | konquest/mainwin.h | 2 | ||||
-rw-r--r-- | konquest/map_widget.h | 2 | ||||
-rw-r--r-- | konquest/minimap.h | 2 | ||||
-rw-r--r-- | konquest/newgamedlg.h | 2 | ||||
-rw-r--r-- | konquest/planet_info.h | 2 |
9 files changed, 11 insertions, 11 deletions
diff --git a/konquest/gameboard.h b/konquest/gameboard.h index 5078cfda..cf0d6a21 100644 --- a/konquest/gameboard.h +++ b/konquest/gameboard.h @@ -23,7 +23,7 @@ enum GameState { NONE, SOURCE_PLANET, DEST_PLANET, SHIP_COUNT, RULER_SOURCE, RUL //************************************************************************ class GameBoard : public TQWidget { - Q_OBJECT + TQ_OBJECT public: diff --git a/konquest/gamecore.h b/konquest/gamecore.h index 6bc3af38..9d82029f 100644 --- a/konquest/gamecore.h +++ b/konquest/gamecore.h @@ -173,7 +173,7 @@ public: class Planet : public TQObject { - Q_OBJECT + TQ_OBJECT private: @@ -228,7 +228,7 @@ private: class Sector : public TQObject { - Q_OBJECT + TQ_OBJECT public: @@ -272,7 +272,7 @@ protected: class Map : public TQObject { - Q_OBJECT + TQ_OBJECT public: diff --git a/konquest/gameenddlg.h b/konquest/gameenddlg.h index 5eccb794..b1062e8a 100644 --- a/konquest/gameenddlg.h +++ b/konquest/gameenddlg.h @@ -8,7 +8,7 @@ class TQPushButton; class GameEndDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/konquest/int_validator.h b/konquest/int_validator.h index 7af62d19..2723f43c 100644 --- a/konquest/int_validator.h +++ b/konquest/int_validator.h @@ -6,7 +6,7 @@ class IntValidator : public TQValidator { - Q_OBJECT + TQ_OBJECT public: diff --git a/konquest/mainwin.h b/konquest/mainwin.h index 36c31038..81941999 100644 --- a/konquest/mainwin.h +++ b/konquest/mainwin.h @@ -10,7 +10,7 @@ class PlanetStatusTable; class MainWindow : public TDEMainWindow { - Q_OBJECT + TQ_OBJECT public: diff --git a/konquest/map_widget.h b/konquest/map_widget.h index 45e67d9e..1a8eccff 100644 --- a/konquest/map_widget.h +++ b/konquest/map_widget.h @@ -15,7 +15,7 @@ class ConquestMap : public TQGridView { - Q_OBJECT + TQ_OBJECT // Constructors diff --git a/konquest/minimap.h b/konquest/minimap.h index 417a2c54..ca65464b 100644 --- a/konquest/minimap.h +++ b/konquest/minimap.h @@ -13,7 +13,7 @@ class MiniMap : public TQGridView { - Q_OBJECT + TQ_OBJECT // Constructors diff --git a/konquest/newgamedlg.h b/konquest/newgamedlg.h index ac6ac268..1843ac90 100644 --- a/konquest/newgamedlg.h +++ b/konquest/newgamedlg.h @@ -14,7 +14,7 @@ class NewGameDlgUI; class NewGameDlg : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: diff --git a/konquest/planet_info.h b/konquest/planet_info.h index 3a9247df..47904b14 100644 --- a/konquest/planet_info.h +++ b/konquest/planet_info.h @@ -22,7 +22,7 @@ typedef TQPtrListIterator<planet_info_buffer> PlanetInfoListIterator; class PlanetInfo : public TQFrame { - Q_OBJECT + TQ_OBJECT public: |