summaryrefslogtreecommitdiffstats
path: root/examples/tictac/tictac.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-13 17:43:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-13 17:43:39 -0600
commit359640943bcf155faa9a067dde9e00a123276290 (patch)
treefb3d55ea5e18949042fb0064123fb73d2b1eb932 /examples/tictac/tictac.h
parenta829bcdc533e154000803d517200d32fe762e85c (diff)
downloadtqt3-359640943bcf155faa9a067dde9e00a123276290.tar.gz
tqt3-359640943bcf155faa9a067dde9e00a123276290.zip
Automated update from Qt3
Diffstat (limited to 'examples/tictac/tictac.h')
-rw-r--r--examples/tictac/tictac.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/tictac/tictac.h b/examples/tictac/tictac.h
index e2c1917ed..1bf3927e6 100644
--- a/examples/tictac/tictac.h
+++ b/examples/tictac/tictac.h
@@ -24,7 +24,7 @@ class TQLabel;
class TicTacButton : public TQPushButton
{
- Q_OBJECT
+ TQ_OBJECT
public:
TicTacButton( TQWidget *parent );
enum Type { Blank, Circle, Cross };
@@ -55,7 +55,7 @@ typedef TQMemArray<int> TicTacArray;
class TicTacGameBoard : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
TicTacGameBoard( int n, TQWidget *parent=0, const char *name=0 );
~TicTacGameBoard();
@@ -88,7 +88,7 @@ private:
class TicTacToe : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
TicTacToe( int boardSize=3, TQWidget *parent=0, const char *name=0 );
private slots: