summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 12:48:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 12:48:45 +0900
commite2bdc2c6cf2fdb79b7d1b21fd8d9fafb53404ff9 (patch)
tree1de675de74e789174dbaf16148dd6313e86063f6
parent0d8600d9bf545684981dc729582d88835ac76d8d (diff)
downloadtdepacman-e2bdc2c6.tar.gz
tdepacman-e2bdc2c6.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--doc/other/tdepacman-api/tdepacman_h.html2
-rw-r--r--tdepacman/keys.h2
-rw-r--r--tdepacman/referee.h2
-rw-r--r--tdepacman/score.h2
-rw-r--r--tdepacman/status.h2
-rw-r--r--tdepacman/tdepacman.h2
-rw-r--r--tdepacman/tdepacmanview.h2
7 files changed, 7 insertions, 7 deletions
diff --git a/doc/other/tdepacman-api/tdepacman_h.html b/doc/other/tdepacman-api/tdepacman_h.html
index 5d4a263..b0d16ac 100644
--- a/doc/other/tdepacman-api/tdepacman_h.html
+++ b/doc/other/tdepacman-api/tdepacman_h.html
@@ -56,7 +56,7 @@
/** TDEpacman is the base class of the project */
class TDEpacman : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
/** construtor */
TDEpacman(TQWidget* parent=0, const char *name=0);
diff --git a/tdepacman/keys.h b/tdepacman/keys.h
index f1c822a..1688871 100644
--- a/tdepacman/keys.h
+++ b/tdepacman/keys.h
@@ -14,7 +14,7 @@
class PKeys : public TQDialog
{
- Q_OBJECT
+ TQ_OBJECT
public:
PKeys( TQWidget *parent=0, const char *name=0 );
diff --git a/tdepacman/referee.h b/tdepacman/referee.h
index a563fb8..ba23d69 100644
--- a/tdepacman/referee.h
+++ b/tdepacman/referee.h
@@ -27,7 +27,7 @@ enum { Init, Introducing, Playing, Demonstration, Paused, Player, Ready,
class Referee : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
Referee (TQWidget *parent=0, const char *name=0, int scheme=-1, int mode=-1, Bitfont *font=0);
diff --git a/tdepacman/score.h b/tdepacman/score.h
index fc0da45..8808c00 100644
--- a/tdepacman/score.h
+++ b/tdepacman/score.h
@@ -24,7 +24,7 @@
class Score : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
Score (TQWidget *parent=0, const char *name=0, int scheme=-1, int mode=-1, Bitfont *font=0);
~Score();
diff --git a/tdepacman/status.h b/tdepacman/status.h
index 6cbf759..f54a63e 100644
--- a/tdepacman/status.h
+++ b/tdepacman/status.h
@@ -18,7 +18,7 @@
class Status : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
Status(TQWidget *parent=0, const char *name=0, int scheme=-1, int mode=-1);
~Status() {};
diff --git a/tdepacman/tdepacman.h b/tdepacman/tdepacman.h
index e391a46..d4ad12e 100644
--- a/tdepacman/tdepacman.h
+++ b/tdepacman/tdepacman.h
@@ -51,7 +51,7 @@ class TDEpacmanView;
*/
class TDEpacmanApp : public TDEMainWindow
{
- Q_OBJECT
+ TQ_OBJECT
friend class TDEpacmanView;
diff --git a/tdepacman/tdepacmanview.h b/tdepacman/tdepacmanview.h
index 6286964..4a0dc10 100644
--- a/tdepacman/tdepacmanview.h
+++ b/tdepacman/tdepacmanview.h
@@ -37,7 +37,7 @@
*/
class TDEpacmanView : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
/** Constructor for the main view */
TDEpacmanView ( TQWidget *parent = 0, const char *name = 0);