From 1f0ce8533cc837aa2d4155b5fc17d2004bed0197 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 5 Jun 2024 19:02:23 +0900 Subject: Rename template library nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/network.doc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/network.doc') 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 &, QNetworkOperation * ) ), - this, TQ_SLOT( slotInsertEntries( const QValueList &, QNetworkOperation * ) ) ); + connect( &op, TQ_SIGNAL( newChildren( const TQValueList &, QNetworkOperation * ) ), + this, TQ_SLOT( slotInsertEntries( const TQValueList &, 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 &info, QNetworkOperation * ) +void MyClass::slotInsertEntries( const TQValueList &info, QNetworkOperation * ) { - QValueList::ConstIterator it = info.begin(); + TQValueList::ConstIterator it = info.begin(); for ( ; it != info.end(); ++it ) { const QUrlInfo &inf = *it; tqDebug( "Name: %s, Size: %d, Last Modified: %s", -- cgit v1.2.1