summaryrefslogtreecommitdiffstats
path: root/doc/html/network.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-15 13:05:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-22 10:05:58 +0900
commit397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch)
tree0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/network.html
parent755d46927cc6a5719e695aeb8133be6897de62d8 (diff)
downloadtqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.tar.gz
tqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.zip
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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() );
}
}