diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-13 17:43:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-13 17:43:39 -0600 |
commit | 359640943bcf155faa9a067dde9e00a123276290 (patch) | |
tree | fb3d55ea5e18949042fb0064123fb73d2b1eb932 /examples/network/infoprotocol | |
parent | a829bcdc533e154000803d517200d32fe762e85c (diff) | |
download | tqt3-359640943bcf155faa9a067dde9e00a123276290.tar.gz tqt3-359640943bcf155faa9a067dde9e00a123276290.zip |
Automated update from Qt3
Diffstat (limited to 'examples/network/infoprotocol')
4 files changed, 6 insertions, 6 deletions
diff --git a/examples/network/infoprotocol/infoclient/client.h b/examples/network/infoprotocol/infoclient/client.h index 50a31bdad..e25906864 100644 --- a/examples/network/infoprotocol/infoclient/client.h +++ b/examples/network/infoprotocol/infoclient/client.h @@ -22,7 +22,7 @@ static const Q_UINT16 infoPort = 42417; class ClientInfo : public ClientInfoBase { - Q_OBJECT + TQ_OBJECT public: ClientInfo( TQWidget *parent = 0, const char *name = 0 ); diff --git a/examples/network/infoprotocol/infoserver/server.h b/examples/network/infoprotocol/infoserver/server.h index 87683b89a..33fb67821 100644 --- a/examples/network/infoprotocol/infoserver/server.h +++ b/examples/network/infoprotocol/infoserver/server.h @@ -25,7 +25,7 @@ static const Q_UINT16 infoPort = 42417; */ class ServerInfo : public ServerInfoBase { - Q_OBJECT + TQ_OBJECT public: ServerInfo( Q_UINT16 port = infoPort, TQWidget *parent = 0, const char *name = 0 ); @@ -36,7 +36,7 @@ private slots: class SimpleServer : public TQServerSocket { - Q_OBJECT + TQ_OBJECT public: SimpleServer( Q_UINT16 port = infoPort, TQObject* parent = 0, const char *name = 0 ); void newConnection( int socket ); @@ -51,7 +51,7 @@ private: class ClientSocket : public TQSocket { - Q_OBJECT + TQ_OBJECT public: ClientSocket( int sock, InfoData *i, TQObject *parent = 0, const char *name = 0 ); diff --git a/examples/network/infoprotocol/infourlclient/client.h b/examples/network/infoprotocol/infourlclient/client.h index 42e1e303b..43641efb5 100644 --- a/examples/network/infoprotocol/infourlclient/client.h +++ b/examples/network/infoprotocol/infourlclient/client.h @@ -17,7 +17,7 @@ class ClientInfo : public ClientInfoBase { - Q_OBJECT + TQ_OBJECT public: ClientInfo( TQWidget *parent = 0, const char *name = 0 ); diff --git a/examples/network/infoprotocol/infourlclient/qip.h b/examples/network/infoprotocol/infourlclient/qip.h index cb748a3ba..ee70383d4 100644 --- a/examples/network/infoprotocol/infourlclient/qip.h +++ b/examples/network/infoprotocol/infourlclient/qip.h @@ -19,7 +19,7 @@ static const Q_UINT16 infoPort = 42417; class Qip : public TQNetworkProtocol { - Q_OBJECT + TQ_OBJECT public: Qip(); |