diff options
Diffstat (limited to 'doc/html/network.html')
-rw-r--r-- | doc/html/network.html | 10 |
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( &op, TQ_SIGNAL( newChildren( const <a href="ntqvaluelist.html">TQValueList</a><TQUrlInfo> &, TQNetworkOperation * ) ), - this, TQ_SLOT( slotInsertEntries( const <a href="ntqvaluelist.html">TQValueList</a><TQUrlInfo> &, TQNetworkOperation * ) ) ); + connect( &op, TQ_SIGNAL( newChildren( const <a href="tqvaluelist.html">TQValueList</a><TQUrlInfo> &, TQNetworkOperation * ) ), + this, TQ_SLOT( slotInsertEntries( const <a href="tqvaluelist.html">TQValueList</a><TQUrlInfo> &, TQNetworkOperation * ) ) ); connect( &op, TQ_SIGNAL( start( <a href="qnetworkoperation.html">TQNetworkOperation</a> * ) ), this, TQ_SLOT( slotStart( <a href="qnetworkoperation.html">TQNetworkOperation</a> *) ) ); connect( &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><TQUrlInfo> &info, TQNetworkOperation * ) +void MyClass::slotInsertEntries( const <a href="tqvaluelist.html">TQValueList</a><TQUrlInfo> &info, TQNetworkOperation * ) { - TQValueList<TQUrlInfo>::ConstIterator it = info.<a href="ntqvaluelist.html#begin">begin</a>(); - for ( ; it != info.<a href="ntqvaluelist.html#end">end</a>(); ++it ) { + 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="ntqurlinfo.html">TQUrlInfo</a> &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() ); |