diff options
Diffstat (limited to 'examples/network')
-rw-r--r-- | examples/network/clientserver/server/server.cpp | 2 | ||||
-rw-r--r-- | examples/network/httpd/httpd.cpp | 2 | ||||
-rw-r--r-- | examples/network/networkprotocol/main.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/network/clientserver/server/server.cpp b/examples/network/clientserver/server/server.cpp index 440647c..5a69ad8 100644 --- a/examples/network/clientserver/server/server.cpp +++ b/examples/network/clientserver/server/server.cpp @@ -79,7 +79,7 @@ public: QServerSocket( 4242, 1, parent ) { if ( !ok() ) { - qWarning("Failed to bind to port 4242"); + tqWarning("Failed to bind to port 4242"); exit(1); } } diff --git a/examples/network/httpd/httpd.cpp b/examples/network/httpd/httpd.cpp index 4c40961..df9df6b 100644 --- a/examples/network/httpd/httpd.cpp +++ b/examples/network/httpd/httpd.cpp @@ -27,7 +27,7 @@ public: QServerSocket(8080,1,parent) { if ( !ok() ) { - qWarning("Failed to bind to port 8080"); + tqWarning("Failed to bind to port 8080"); exit( 1 ); } } diff --git a/examples/network/networkprotocol/main.cpp b/examples/network/networkprotocol/main.cpp index 8d636e4..bb9bc1d 100644 --- a/examples/network/networkprotocol/main.cpp +++ b/examples/network/networkprotocol/main.cpp @@ -17,7 +17,7 @@ int main( int argc, char **argv ) { QApplication a( argc, argv ); - qInitNetworkProtocols(); + tqInitNetworkProtocols(); QNetworkProtocol::registerNetworkProtocol( "nntp", new QNetworkProtocolFactory<Nntp> ); View v; |