summaryrefslogtreecommitdiffstats
path: root/doc/network.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-05 19:02:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-05 19:02:23 +0900
commit1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (patch)
treed62f4174c0e58e1aa895fc71484d068b614cd6de /doc/network.doc
parent8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (diff)
downloadtqt3-1f0ce8533cc837aa2d4155b5fc17d2004bed0197.tar.gz
tqt3-1f0ce8533cc837aa2d4155b5fc17d2004bed0197.zip
Rename template library nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/network.doc')
-rw-r--r--doc/network.doc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/network.doc b/doc/network.doc
index f37a911d8..6c55a1ddb 100644
--- a/doc/network.doc
+++ b/doc/network.doc
@@ -166,17 +166,17 @@ QUrlOperator op;
MyClass::MyClass() : TQObject(), op( "ftp://ftp.trolltech.com" )
{
- connect( &op, TQ_SIGNAL( newChildren( const QValueList<QUrlInfo> &, QNetworkOperation * ) ),
- this, TQ_SLOT( slotInsertEntries( const QValueList<QUrlInfo> &, QNetworkOperation * ) ) );
+ connect( &op, TQ_SIGNAL( newChildren( const TQValueList<QUrlInfo> &, QNetworkOperation * ) ),
+ this, TQ_SLOT( slotInsertEntries( const TQValueList<QUrlInfo> &, QNetworkOperation * ) ) );
connect( &op, TQ_SIGNAL( start( QNetworkOperation * ) ),
this, TQ_SLOT( slotStart( QNetworkOperation *) ) );
connect( &op, TQ_SIGNAL( finished( QNetworkOperation * ) ),
this, TQ_SLOT( slotFinished( QNetworkOperation *) ) );
}
-void MyClass::slotInsertEntries( const QValueList<QUrlInfo> &info, QNetworkOperation * )
+void MyClass::slotInsertEntries( const TQValueList<QUrlInfo> &info, QNetworkOperation * )
{
- QValueList<QUrlInfo>::ConstIterator it = info.begin();
+ TQValueList<QUrlInfo>::ConstIterator it = info.begin();
for ( ; it != info.end(); ++it ) {
const QUrlInfo &inf = *it;
tqDebug( "Name: %s, Size: %d, Last Modified: %s",