diff options
Diffstat (limited to 'doc/network.doc')
-rw-r--r-- | doc/network.doc | 8 |
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", |