diff options
Diffstat (limited to 'doc/html/network.html')
-rw-r--r-- | doc/html/network.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/network.html b/doc/html/network.html index e80ffcdab..ab49f5528 100644 --- a/doc/html/network.html +++ b/doc/html/network.html @@ -128,9 +128,9 @@ void MyClass::slotOperationFinished( <a href="tqnetworkoperation.html">TQNetwork switch ( op-><a href="tqnetworkoperation.html#operation">operation</a>() ) { case TQNetworkProtocol::OpMkDir: if ( op-><a href="tqnetworkoperation.html#state">state</a>() == TQNetworkProtocol::StFailed ) - <a href="ntqapplication.html#qDebug">tqDebug</a>( "Couldn't create directory %s", op-><a href="tqnetworkoperation.html#arg">arg</a>( 0 ).latin1() ); + <a href="tqapplication.html#qDebug">tqDebug</a>( "Couldn't create directory %s", op-><a href="tqnetworkoperation.html#arg">arg</a>( 0 ).latin1() ); else - <a href="ntqapplication.html#qDebug">tqDebug</a>( "Successfully created directory %s", op-><a href="tqnetworkoperation.html#arg">arg</a>( 0 ).latin1() ); + <a href="tqapplication.html#qDebug">tqDebug</a>( "Successfully created directory %s", op-><a href="tqnetworkoperation.html#arg">arg</a>( 0 ).latin1() ); break; // ... and so on } @@ -158,24 +158,24 @@ void MyClass::slotInsertEntries( const <a href="tqvaluelist.html">TQValueList</a TQValueList<TQUrlInfo>::ConstIterator it = info.<a href="tqvaluelist.html#begin">begin</a>(); for ( ; it != info.<a href="tqvaluelist.html#end">end</a>(); ++it ) { const <a href="tqurlinfo.html">TQUrlInfo</a> &inf = *it; - <a href="ntqapplication.html#qDebug">tqDebug</a>( "Name: %s, Size: %d, Last Modified: %s", + <a href="tqapplication.html#qDebug">tqDebug</a>( "Name: %s, Size: %d, Last Modified: %s", inf.<a href="tqurlinfo.html#name">name</a>().latin1(), inf.<a href="tqurlinfo.html#size">size</a>(), inf.<a href="tqurlinfo.html#lastModified">lastModified</a>().toString().latin1() ); } } void MyClass::slotStart( <a href="tqnetworkoperation.html">TQNetworkOperation</a> * ) { - <a href="ntqapplication.html#qDebug">tqDebug</a>( "Start reading '%s'", op.toString().latin1() ); + <a href="tqapplication.html#qDebug">tqDebug</a>( "Start reading '%s'", op.toString().latin1() ); } void MyClass::slotFinished( <a href="tqnetworkoperation.html">TQNetworkOperation</a> *operation ) { if ( operation-><a href="tqnetworkoperation.html#operation">operation</a>() == TQNetworkProtocol::OpListChildren ) { if ( operation-><a href="tqnetworkoperation.html#state">state</a>() == TQNetworkProtocol::StFailed ) - <a href="ntqapplication.html#qDebug">tqDebug</a>( "Couldn't read '%s'! Following error occurred: %s", + <a href="tqapplication.html#qDebug">tqDebug</a>( "Couldn't read '%s'! Following error occurred: %s", op.toString().latin1(), operation-><a href="tqnetworkoperation.html#protocolDetail">protocolDetail</a>().latin1() ); else - <a href="ntqapplication.html#qDebug">tqDebug</a>( "Finished reading '%s'!", op.toString().latin1() ); + <a href="tqapplication.html#qDebug">tqDebug</a>( "Finished reading '%s'!", op.toString().latin1() ); } } |