summaryrefslogtreecommitdiffstats
path: root/doc/html/networkprotocol-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-23 14:04:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-27 16:08:54 +0900
commit04913ce7a46fd027856e83a96205fdc388742a19 (patch)
treea04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/networkprotocol-example.html
parentc11c0f228b65f7471a26513ef8dbde413e75f8fa (diff)
downloadtqt-04913ce7a46fd027856e83a96205fdc388742a19.tar.gz
tqt-04913ce7a46fd027856e83a96205fdc388742a19.zip
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/networkprotocol-example.html')
-rw-r--r--doc/html/networkprotocol-example.html12
1 files changed, 6 insertions, 6 deletions
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 <a href="ntqsocket.html">TQSocket</a>( this );
-<a name="x684"></a> <a href="ntqobject.html#connect">connect</a>( commandSocket, TQ_SIGNAL( <a href="ntqsocket.html#hostFound">hostFound</a>() ),
+<a name="x684"></a> <a href="tqobject.html#connect">connect</a>( commandSocket, TQ_SIGNAL( <a href="ntqsocket.html#hostFound">hostFound</a>() ),
this, TQ_SLOT( hostFound() ) );
-<a name="x681"></a> <a href="ntqobject.html#connect">connect</a>( commandSocket, TQ_SIGNAL( <a href="ntqsocket.html#connected">connected</a>() ),
+<a name="x681"></a> <a href="tqobject.html#connect">connect</a>( commandSocket, TQ_SIGNAL( <a href="ntqsocket.html#connected">connected</a>() ),
this, TQ_SLOT( connected() ) );
-<a name="x682"></a> <a href="ntqobject.html#connect">connect</a>( commandSocket, TQ_SIGNAL( <a href="ntqsocket.html#connectionClosed">connectionClosed</a>() ),
+<a name="x682"></a> <a href="tqobject.html#connect">connect</a>( commandSocket, TQ_SIGNAL( <a href="ntqsocket.html#connectionClosed">connectionClosed</a>() ),
this, TQ_SLOT( closed() ) );
-<a name="x687"></a> <a href="ntqobject.html#connect">connect</a>( commandSocket, TQ_SIGNAL( <a href="ntqsocket.html#readyRead">readyRead</a>() ),
+<a name="x687"></a> <a href="tqobject.html#connect">connect</a>( commandSocket, TQ_SIGNAL( <a href="ntqsocket.html#readyRead">readyRead</a>() ),
this, TQ_SLOT( readyRead() ) );
-<a name="x683"></a> <a href="ntqobject.html#connect">connect</a>( commandSocket, TQ_SIGNAL( <a href="ntqsocket.html#error">error</a>( int ) ),
+<a name="x683"></a> <a href="tqobject.html#connect">connect</a>( commandSocket, TQ_SIGNAL( <a href="ntqsocket.html#error">error</a>( int ) ),
this, TQ_SLOT( error( int ) ) );
}
@@ -341,7 +341,7 @@ void <a name="f296"></a>Nntp::error( int code )
code == TQSocket::ErrConnectionRefused ) {
// this signal is called if connecting to the server failed
if ( <a href="ntqnetworkprotocol.html#operationInProgress">operationInProgress</a>() ) {
- <a href="ntqstring.html">TQString</a> msg = <a href="ntqobject.html#tr">tr</a>( "Host not found or couldn't connect to: \n" + url()-&gt;host() );
+ <a href="ntqstring.html">TQString</a> msg = <a href="tqobject.html#tr">tr</a>( "Host not found or couldn't connect to: \n" + url()-&gt;host() );
<a href="ntqnetworkprotocol.html#operationInProgress">operationInProgress</a>()-&gt;setState( StFailed );
<a href="ntqnetworkprotocol.html#operationInProgress">operationInProgress</a>()-&gt;setProtocolDetail( msg );
<a href="ntqnetworkprotocol.html#operationInProgress">operationInProgress</a>()-&gt;setErrorCode( (int)ErrHostNotFound );