diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:06:19 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:06:19 +0900 |
commit | bc6061ff9e83d8032611908039c3b399aedabf88 (patch) | |
tree | 6a433a040d0194af8a686f67d819297ea19c0b3d /kmines | |
parent | 8d5c10dd092d5429179276a52225d419a25a9197 (diff) | |
download | tdegames-bc6061ff9e83d8032611908039c3b399aedabf88.tar.gz tdegames-bc6061ff9e83d8032611908039c3b399aedabf88.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmines')
-rw-r--r-- | kmines/dialogs.h | 10 | ||||
-rw-r--r-- | kmines/field.h | 2 | ||||
-rw-r--r-- | kmines/kzoommainwindow.h | 2 | ||||
-rw-r--r-- | kmines/main.h | 2 | ||||
-rw-r--r-- | kmines/solver/solver.h | 4 | ||||
-rw-r--r-- | kmines/status.h | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/kmines/dialogs.h b/kmines/dialogs.h index d8bd94fa..ce8bca28 100644 --- a/kmines/dialogs.h +++ b/kmines/dialogs.h @@ -33,7 +33,7 @@ class KIntNumInput; //----------------------------------------------------------------------------- class Smiley : public TQPushButton, public KMines { - Q_OBJECT + TQ_OBJECT public: Smiley(TQWidget *parent, const char *name = 0) @@ -49,7 +49,7 @@ class Smiley : public TQPushButton, public KMines //----------------------------------------------------------------------------- class DigitalClock : public KGameLCDClock { - Q_OBJECT + TQ_OBJECT public: DigitalClock(TQWidget *parent); @@ -77,7 +77,7 @@ class DigitalClock : public KGameLCDClock //----------------------------------------------------------------------------- class CustomConfig : public TQWidget, public KMines { - Q_OBJECT + TQ_OBJECT public: CustomConfig(); @@ -102,7 +102,7 @@ class CustomConfig : public TQWidget, public KMines //----------------------------------------------------------------------------- class GameConfig : public TQWidget, public KMines { - Q_OBJECT + TQ_OBJECT public: GameConfig(); @@ -121,7 +121,7 @@ class GameConfig : public TQWidget, public KMines class AppearanceConfig : public TQWidget, public KMines { - Q_OBJECT + TQ_OBJECT public: AppearanceConfig(); diff --git a/kmines/field.h b/kmines/field.h index e61718d1..2d6ef873 100644 --- a/kmines/field.h +++ b/kmines/field.h @@ -26,7 +26,7 @@ //----------------------------------------------------------------------------- class Field : public FieldFrame, public BaseField { - Q_OBJECT + TQ_OBJECT public: enum ActionType { Reveal = 0, AutoReveal, SetFlag, UnsetFlag, SetUncertain, diff --git a/kmines/kzoommainwindow.h b/kmines/kzoommainwindow.h index 1af9bc8b..433d9d04 100644 --- a/kmines/kzoommainwindow.h +++ b/kmines/kzoommainwindow.h @@ -41,7 +41,7 @@ class TDEToggleAction; */ class KZoomMainWindow : public TDEMainWindow { - Q_OBJECT + TQ_OBJECT public: /** Constructor. */ diff --git a/kmines/main.h b/kmines/main.h index 06100dc6..239663ec 100644 --- a/kmines/main.h +++ b/kmines/main.h @@ -30,7 +30,7 @@ class Status; class MainWidget : public KZoomMainWindow, public KMines { - Q_OBJECT + TQ_OBJECT public: MainWidget(); diff --git a/kmines/solver/solver.h b/kmines/solver/solver.h index f069f0ea..7354b99c 100644 --- a/kmines/solver/solver.h +++ b/kmines/solver/solver.h @@ -31,7 +31,7 @@ class SolverPrivate; class Solver : public TQObject { - Q_OBJECT + TQ_OBJECT public: Solver(TQObject *parent = 0); @@ -62,7 +62,7 @@ class Solver : public TQObject class SolvingRateDialog : public KDialogBase { - Q_OBJECT + TQ_OBJECT public: SolvingRateDialog(const BaseField &field, TQWidget *parent); diff --git a/kmines/status.h b/kmines/status.h index db1ceb64..86101ab2 100644 --- a/kmines/status.h +++ b/kmines/status.h @@ -32,7 +32,7 @@ class TQTimer; class Status : public TQWidget, public KMines { - Q_OBJECT + TQ_OBJECT public : Status(TQWidget *parent); |