diff options
Diffstat (limited to 'examples/network/infoprotocol')
5 files changed, 8 insertions, 8 deletions
diff --git a/examples/network/infoprotocol/infoclient/client.h b/examples/network/infoprotocol/infoclient/client.h index e25906864..544d28ae7 100644 --- a/examples/network/infoprotocol/infoclient/client.h +++ b/examples/network/infoprotocol/infoclient/client.h @@ -18,7 +18,7 @@ class TQLineEdit; class TQListBox; class TQLabel; -static const Q_UINT16 infoPort = 42417; +static const TQ_UINT16 infoPort = 42417; class ClientInfo : public ClientInfoBase { diff --git a/examples/network/infoprotocol/infoserver/main.cpp b/examples/network/infoprotocol/infoserver/main.cpp index 0cfcf58c0..ecb2a361f 100644 --- a/examples/network/infoprotocol/infoserver/main.cpp +++ b/examples/network/infoprotocol/infoserver/main.cpp @@ -14,7 +14,7 @@ int main( int argc, char** argv ) { TQApplication app( argc, argv ); - Q_UINT16 port = ( argc > 1 ) ? TQString( argv[ 1 ] ).toInt() : infoPort; + TQ_UINT16 port = ( argc > 1 ) ? TQString( argv[ 1 ] ).toInt() : infoPort; ServerInfo info( port, 0, "server info" ); app.setMainWidget( &info ); info.show(); diff --git a/examples/network/infoprotocol/infoserver/server.cpp b/examples/network/infoprotocol/infoserver/server.cpp index 116ac0cbb..a405fd8ba 100644 --- a/examples/network/infoprotocol/infoserver/server.cpp +++ b/examples/network/infoprotocol/infoserver/server.cpp @@ -18,7 +18,7 @@ -ServerInfo::ServerInfo( Q_UINT16 port, TQWidget *parent, const char *name ) : +ServerInfo::ServerInfo( TQ_UINT16 port, TQWidget *parent, const char *name ) : ServerInfoBase( parent, name ) { SimpleServer *server = new SimpleServer( port, this, "simple server" ); @@ -32,7 +32,7 @@ void ServerInfo::newConnect() } -SimpleServer::SimpleServer( Q_UINT16 port, TQObject* parent, const char *name ) : +SimpleServer::SimpleServer( TQ_UINT16 port, TQObject* parent, const char *name ) : TQServerSocket( port, 1, parent, name ) { if ( !ok() ) { diff --git a/examples/network/infoprotocol/infoserver/server.h b/examples/network/infoprotocol/infoserver/server.h index 33fb67821..637a4996b 100644 --- a/examples/network/infoprotocol/infoserver/server.h +++ b/examples/network/infoprotocol/infoserver/server.h @@ -16,7 +16,7 @@ #include "infodata.h" #include "serverbase.h" -static const Q_UINT16 infoPort = 42417; +static const TQ_UINT16 infoPort = 42417; /* @@ -27,7 +27,7 @@ class ServerInfo : public ServerInfoBase { TQ_OBJECT public: - ServerInfo( Q_UINT16 port = infoPort, TQWidget *parent = 0, const char *name = 0 ); + ServerInfo( TQ_UINT16 port = infoPort, TQWidget *parent = 0, const char *name = 0 ); private slots: void newConnect(); @@ -38,7 +38,7 @@ class SimpleServer : public TQServerSocket { TQ_OBJECT public: - SimpleServer( Q_UINT16 port = infoPort, TQObject* parent = 0, const char *name = 0 ); + SimpleServer( TQ_UINT16 port = infoPort, TQObject* parent = 0, const char *name = 0 ); void newConnection( int socket ); signals: diff --git a/examples/network/infoprotocol/infourlclient/qip.h b/examples/network/infoprotocol/infourlclient/qip.h index ee70383d4..c88ed8a0a 100644 --- a/examples/network/infoprotocol/infourlclient/qip.h +++ b/examples/network/infoprotocol/infourlclient/qip.h @@ -14,7 +14,7 @@ class TQSocket; -static const Q_UINT16 infoPort = 42417; +static const TQ_UINT16 infoPort = 42417; class Qip : public TQNetworkProtocol |