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.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/network.html b/doc/html/network.html
index ce58eb245..72e300f08 100644
--- a/doc/html/network.html
+++ b/doc/html/network.html
@@ -146,18 +146,18 @@ TQUrlOperator op;
MyClass::MyClass() : <a href="tqobject.html">TQObject</a>(), op( "ftp://ftp.trolltech.com" )
{
- connect( &amp;op, TQ_SIGNAL( newChildren( const <a href="ntqvaluelist.html">TQValueList</a>&lt;TQUrlInfo&gt; &amp;, TQNetworkOperation * ) ),
- this, TQ_SLOT( slotInsertEntries( const <a href="ntqvaluelist.html">TQValueList</a>&lt;TQUrlInfo&gt; &amp;, TQNetworkOperation * ) ) );
+ connect( &amp;op, TQ_SIGNAL( newChildren( const <a href="tqvaluelist.html">TQValueList</a>&lt;TQUrlInfo&gt; &amp;, TQNetworkOperation * ) ),
+ this, TQ_SLOT( slotInsertEntries( const <a href="tqvaluelist.html">TQValueList</a>&lt;TQUrlInfo&gt; &amp;, TQNetworkOperation * ) ) );
connect( &amp;op, TQ_SIGNAL( start( <a href="qnetworkoperation.html">TQNetworkOperation</a> * ) ),
this, TQ_SLOT( slotStart( <a href="qnetworkoperation.html">TQNetworkOperation</a> *) ) );
connect( &amp;op, TQ_SIGNAL( finished( <a href="qnetworkoperation.html">TQNetworkOperation</a> * ) ),
this, TQ_SLOT( slotFinished( <a href="qnetworkoperation.html">TQNetworkOperation</a> *) ) );
}
-void MyClass::slotInsertEntries( const <a href="ntqvaluelist.html">TQValueList</a>&lt;TQUrlInfo&gt; &amp;info, TQNetworkOperation * )
+void MyClass::slotInsertEntries( const <a href="tqvaluelist.html">TQValueList</a>&lt;TQUrlInfo&gt; &amp;info, TQNetworkOperation * )
{
- 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 ) {
+ 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="ntqurlinfo.html">TQUrlInfo</a> &amp;inf = *it;
<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() );