summaryrefslogtreecommitdiffstats
path: root/doc/html/network.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/network.html')
-rw-r--r--doc/html/network.html12
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-&gt;<a href="tqnetworkoperation.html#operation">operation</a>() ) {
case TQNetworkProtocol::OpMkDir:
if ( op-&gt;<a href="tqnetworkoperation.html#state">state</a>() == TQNetworkProtocol::StFailed )
- <a href="ntqapplication.html#qDebug">tqDebug</a>( "Couldn't create directory %s", op-&gt;<a href="tqnetworkoperation.html#arg">arg</a>( 0 ).latin1() );
+ <a href="tqapplication.html#qDebug">tqDebug</a>( "Couldn't create directory %s", op-&gt;<a href="tqnetworkoperation.html#arg">arg</a>( 0 ).latin1() );
else
- <a href="ntqapplication.html#qDebug">tqDebug</a>( "Successfully created directory %s", op-&gt;<a href="tqnetworkoperation.html#arg">arg</a>( 0 ).latin1() );
+ <a href="tqapplication.html#qDebug">tqDebug</a>( "Successfully created directory %s", op-&gt;<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&lt;TQUrlInfo&gt;::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> &amp;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-&gt;<a href="tqnetworkoperation.html#operation">operation</a>() == TQNetworkProtocol::OpListChildren ) {
if ( operation-&gt;<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-&gt;<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() );
}
}