summaryrefslogtreecommitdiffstats
path: root/kpat
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:06:19 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-20 15:06:19 +0900
commitbc6061ff9e83d8032611908039c3b399aedabf88 (patch)
tree6a433a040d0194af8a686f67d819297ea19c0b3d /kpat
parent8d5c10dd092d5429179276a52225d419a25a9197 (diff)
downloadtdegames-bc6061ff9e83d8032611908039c3b399aedabf88.tar.gz
tdegames-bc6061ff9e83d8032611908039c3b399aedabf88.zip
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kpat')
-rw-r--r--kpat/card.h2
-rw-r--r--kpat/clock.h2
-rw-r--r--kpat/computation.h2
-rw-r--r--kpat/dealer.h2
-rw-r--r--kpat/fortyeight.h4
-rw-r--r--kpat/freecell.h2
-rw-r--r--kpat/golf.h4
-rw-r--r--kpat/grandf.h2
-rw-r--r--kpat/gypsy.h2
-rw-r--r--kpat/idiot.h2
-rw-r--r--kpat/kings.h2
-rw-r--r--kpat/klondike.h2
-rw-r--r--kpat/mod3.h2
-rw-r--r--kpat/napoleon.h2
-rw-r--r--kpat/pile.h2
-rw-r--r--kpat/pwidget.h2
-rw-r--r--kpat/simon.h2
-rw-r--r--kpat/spider.h2
-rw-r--r--kpat/yukon.h2
19 files changed, 21 insertions, 21 deletions
diff --git a/kpat/card.h b/kpat/card.h
index c6518170..244f0b8d 100644
--- a/kpat/card.h
+++ b/kpat/card.h
@@ -43,7 +43,7 @@ typedef TQValueList<Card*> CardList;
// - It is a graphic entity on a TQCanvas that can be moved around.
//
class Card: public TQObject, public TQCanvasRectangle {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/clock.h b/kpat/clock.h
index eac9a984..09ce3a35 100644
--- a/kpat/clock.h
+++ b/kpat/clock.h
@@ -4,7 +4,7 @@
#include "dealer.h"
class Clock : public Dealer {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/computation.h b/kpat/computation.h
index 1a2cfbbb..48760f1a 100644
--- a/kpat/computation.h
+++ b/kpat/computation.h
@@ -28,7 +28,7 @@
#include "dealer.h"
class Computation : public Dealer {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/dealer.h b/kpat/dealer.h
index 0704433b..630c2ece 100644
--- a/kpat/dealer.h
+++ b/kpat/dealer.h
@@ -91,7 +91,7 @@ struct State
***************************************************************/
class Dealer: public TQCanvasView
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/fortyeight.h b/kpat/fortyeight.h
index 5a97e01a..ed2b1ec7 100644
--- a/kpat/fortyeight.h
+++ b/kpat/fortyeight.h
@@ -5,7 +5,7 @@
class HorLeftPile : public Pile
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -16,7 +16,7 @@ public:
class Fortyeight : public Dealer
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/freecell.h b/kpat/freecell.h
index feca1963..bdd836c7 100644
--- a/kpat/freecell.h
+++ b/kpat/freecell.h
@@ -33,7 +33,7 @@ public:
class FreecellBase : public Dealer
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/golf.h b/kpat/golf.h
index 7b6b51fe..cdf4d17f 100644
--- a/kpat/golf.h
+++ b/kpat/golf.h
@@ -5,7 +5,7 @@
class HorRightPile : public Pile
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -15,7 +15,7 @@ public:
class Golf : public Dealer
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/grandf.h b/kpat/grandf.h
index 6a518264..59091f14 100644
--- a/kpat/grandf.h
+++ b/kpat/grandf.h
@@ -34,7 +34,7 @@ class Deck;
class TDEMainWindow;
class Grandf : public Dealer {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/gypsy.h b/kpat/gypsy.h
index 96f4502e..0bcd2300 100644
--- a/kpat/gypsy.h
+++ b/kpat/gypsy.h
@@ -10,7 +10,7 @@ class Deck;
class TDEMainWindow;
class Gypsy : public Dealer {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/idiot.h b/kpat/idiot.h
index 05ce221d..0f720056 100644
--- a/kpat/idiot.h
+++ b/kpat/idiot.h
@@ -27,7 +27,7 @@
class Idiot: public Dealer
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/kings.h b/kpat/kings.h
index 73b5795a..e908112b 100644
--- a/kpat/kings.h
+++ b/kpat/kings.h
@@ -8,7 +8,7 @@ class Deck;
class TDEMainWindow;
class Kings : public FreecellBase {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/klondike.h b/kpat/klondike.h
index 31077d0c..3a792607 100644
--- a/kpat/klondike.h
+++ b/kpat/klondike.h
@@ -31,7 +31,7 @@
class KlondikePile;
class Klondike : public Dealer {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/mod3.h b/kpat/mod3.h
index 396832e2..76d1f9f0 100644
--- a/kpat/mod3.h
+++ b/kpat/mod3.h
@@ -27,7 +27,7 @@
class Mod3 : public Dealer
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/napoleon.h b/kpat/napoleon.h
index fca710f8..d4a8ba7b 100644
--- a/kpat/napoleon.h
+++ b/kpat/napoleon.h
@@ -24,7 +24,7 @@
#include "dealer.h"
class Napoleon : public Dealer {
- Q_OBJECT
+ TQ_OBJECT
public:
Napoleon (TDEMainWindow* parent=0, const char* name=0);
diff --git a/kpat/pile.h b/kpat/pile.h
index 0ebabe70..92d13ff4 100644
--- a/kpat/pile.h
+++ b/kpat/pile.h
@@ -17,7 +17,7 @@ class Dealer;
class Pile : public TQObject, public TQCanvasRectangle
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/pwidget.h b/kpat/pwidget.h
index aa40a917..de6fbd46 100644
--- a/kpat/pwidget.h
+++ b/kpat/pwidget.h
@@ -34,7 +34,7 @@ class TQWidgetStack;
class TQLabel;
class pWidget: public TDEMainWindow {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/simon.h b/kpat/simon.h
index be6733de..5ec8c3dc 100644
--- a/kpat/simon.h
+++ b/kpat/simon.h
@@ -4,7 +4,7 @@
#include "dealer.h"
class Simon : public Dealer {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/spider.h b/kpat/spider.h
index 0b5d7a9f..d54db076 100644
--- a/kpat/spider.h
+++ b/kpat/spider.h
@@ -33,7 +33,7 @@ public:
class Spider : public Dealer
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/kpat/yukon.h b/kpat/yukon.h
index 8acb7195..3dc591b2 100644
--- a/kpat/yukon.h
+++ b/kpat/yukon.h
@@ -4,7 +4,7 @@
#include "dealer.h"
class Yukon : public Dealer {
- Q_OBJECT
+ TQ_OBJECT
public: