diff options
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(); |