diff options
author | Timothy Pearson <[email protected]> | 2012-06-17 17:28:28 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-06-17 17:28:28 -0500 |
commit | 6dec101d43dcbd4195c47d54bd388db1a8d7230e (patch) | |
tree | 7c336cbed3a93807a34cd4df39b2f92a7d48a141 /examples/network/infoprotocol/infoserver | |
parent | f27c2533f735d53c6b555f387c6390c0690cc246 (diff) | |
download | tqt3-6dec101d43dcbd4195c47d54bd388db1a8d7230e.tar.gz tqt3-6dec101d43dcbd4195c47d54bd388db1a8d7230e.zip |
Automated update from Qt3
Diffstat (limited to 'examples/network/infoprotocol/infoserver')
-rw-r--r-- | examples/network/infoprotocol/infoserver/main.cpp | 2 | ||||
-rw-r--r-- | examples/network/infoprotocol/infoserver/server.cpp | 4 | ||||
-rw-r--r-- | examples/network/infoprotocol/infoserver/server.h | 6 |
3 files changed, 6 insertions, 6 deletions
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: |