From 04913ce7a46fd027856e83a96205fdc388742a19 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 23 May 2024 14:04:45 +0900 Subject: Rename ntqobject*.h and qobject*.cpp to tqobject* Signed-off-by: Michele Calgaro --- doc/html/networkprotocol-example.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/networkprotocol-example.html') diff --git a/doc/html/networkprotocol-example.html b/doc/html/networkprotocol-example.html index 38fe4ece5..926f4f3c1 100644 --- a/doc/html/networkprotocol-example.html +++ b/doc/html/networkprotocol-example.html @@ -116,15 +116,15 @@ protected slots: { // create the command socket and connect to its signals commandSocket = new TQSocket( this ); - connect( commandSocket, TQ_SIGNAL( hostFound() ), + connect( commandSocket, TQ_SIGNAL( hostFound() ), this, TQ_SLOT( hostFound() ) ); - connect( commandSocket, TQ_SIGNAL( connected() ), + connect( commandSocket, TQ_SIGNAL( connected() ), this, TQ_SLOT( connected() ) ); - connect( commandSocket, TQ_SIGNAL( connectionClosed() ), + connect( commandSocket, TQ_SIGNAL( connectionClosed() ), this, TQ_SLOT( closed() ) ); - connect( commandSocket, TQ_SIGNAL( readyRead() ), + connect( commandSocket, TQ_SIGNAL( readyRead() ), this, TQ_SLOT( readyRead() ) ); - connect( commandSocket, TQ_SIGNAL( error( int ) ), + connect( commandSocket, TQ_SIGNAL( error( int ) ), this, TQ_SLOT( error( int ) ) ); } @@ -341,7 +341,7 @@ void Nntp::error( int code ) code == TQSocket::ErrConnectionRefused ) { // this signal is called if connecting to the server failed if ( operationInProgress() ) { - TQString msg = tr( "Host not found or couldn't connect to: \n" + url()->host() ); + TQString msg = tr( "Host not found or couldn't connect to: \n" + url()->host() ); operationInProgress()->setState( StFailed ); operationInProgress()->setProtocolDetail( msg ); operationInProgress()->setErrorCode( (int)ErrHostNotFound ); -- cgit v1.2.3