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 fa6f83acb..e2b04e4a8 100644 --- a/examples/network/clientserver/server/server.cpp +++ b/examples/network/clientserver/server/server.cpp @@ -79,7 +79,7 @@ public: TQServerSocket( 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 827d5cdb4..28e0bd37a 100644 --- a/examples/network/httpd/httpd.cpp +++ b/examples/network/httpd/httpd.cpp @@ -27,7 +27,7 @@ public: TQServerSocket(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 5f9f7d33c..db00b6a98 100644 --- a/examples/network/networkprotocol/main.cpp +++ b/examples/network/networkprotocol/main.cpp @@ -17,7 +17,7 @@ int main( int argc, char **argv ) { TQApplication a( argc, argv ); - qInitNetworkProtocols(); + tqInitNetworkProtocols(); TQNetworkProtocol::registerNetworkProtocol( "nntp", new TQNetworkProtocolFactory<Nntp> ); View v; |