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 c7bd4013..baf1057e 100644
--- a/doc/html/network.html
+++ b/doc/html/network.html
@@ -129,9 +129,9 @@ void MyClass::slotOperationFinished( <a href="qnetworkoperation.html">TQNetworkO
switch ( op-&gt;<a href="qnetworkoperation.html#operation">operation</a>() ) {
case TQNetworkProtocol::OpMkDir:
if ( op-&gt;<a href="qnetworkoperation.html#state">state</a>() == TQNetworkProtocol::StFailed )
- <a href="ntqapplication.html#qDebug">qDebug</a>( "Couldn't create directory %s", op-&gt;<a href="qnetworkoperation.html#arg">arg</a>( 0 ).latin1() );
+ <a href="ntqapplication.html#qDebug">tqDebug</a>( "Couldn't create directory %s", op-&gt;<a href="qnetworkoperation.html#arg">arg</a>( 0 ).latin1() );
else
- <a href="ntqapplication.html#qDebug">qDebug</a>( "Successfully created directory %s", op-&gt;<a href="qnetworkoperation.html#arg">arg</a>( 0 ).latin1() );
+ <a href="ntqapplication.html#qDebug">tqDebug</a>( "Successfully created directory %s", op-&gt;<a href="qnetworkoperation.html#arg">arg</a>( 0 ).latin1() );
break;
// ... and so on
}
@@ -159,24 +159,24 @@ void MyClass::slotInsertEntries( const <a href="ntqvaluelist.html">TQValueList</
TQValueList&lt;TQUrlInfo&gt;::ConstIterator it = info.<a href="ntqvaluelist.html#begin">begin</a>();
for ( ; it != info.<a href="ntqvaluelist.html#end">end</a>(); ++it ) {
const <a href="ntqurlinfo.html">TQUrlInfo</a> &amp;inf = *it;
- <a href="ntqapplication.html#qDebug">qDebug</a>( "Name: %s, Size: %d, Last Modified: %s",
+ <a href="ntqapplication.html#qDebug">tqDebug</a>( "Name: %s, Size: %d, Last Modified: %s",
inf.<a href="ntqurlinfo.html#name">name</a>().latin1(), inf.<a href="ntqurlinfo.html#size">size</a>(), inf.<a href="ntqurlinfo.html#lastModified">lastModified</a>().toString().latin1() );
}
}
void MyClass::slotStart( <a href="qnetworkoperation.html">TQNetworkOperation</a> * )
{
- <a href="ntqapplication.html#qDebug">qDebug</a>( "Start reading '%s'", op.toString().latin1() );
+ <a href="ntqapplication.html#qDebug">tqDebug</a>( "Start reading '%s'", op.toString().latin1() );
}
void MyClass::slotFinished( <a href="qnetworkoperation.html">TQNetworkOperation</a> *operation )
{
if ( operation-&gt;<a href="qnetworkoperation.html#operation">operation</a>() == TQNetworkProtocol::OpListChildren ) {
if ( operation-&gt;<a href="qnetworkoperation.html#state">state</a>() == TQNetworkProtocol::StFailed )
- <a href="ntqapplication.html#qDebug">qDebug</a>( "Couldn't read '%s'! Following error occurred: %s",
+ <a href="ntqapplication.html#qDebug">tqDebug</a>( "Couldn't read '%s'! Following error occurred: %s",
op.toString().latin1(), operation-&gt;<a href="qnetworkoperation.html#protocolDetail">protocolDetail</a>().latin1() );
else
- <a href="ntqapplication.html#qDebug">qDebug</a>( "Finished reading '%s'!", op.toString().latin1() );
+ <a href="ntqapplication.html#qDebug">tqDebug</a>( "Finished reading '%s'!", op.toString().latin1() );
}
}