summaryrefslogtreecommitdiffstats
path: root/doc/network.doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/network.doc')
-rw-r--r--doc/network.doc12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/network.doc b/doc/network.doc
index f6b986d..a51a1ea 100644
--- a/doc/network.doc
+++ b/doc/network.doc
@@ -148,9 +148,9 @@ void MyClass::slotOperationFinished( QNetworkOperation *op )
switch ( op->operation() ) {
case QNetworkProtocol::OpMkDir:
if ( op->state() == QNetworkProtocol::StFailed )
- qDebug( "Couldn't create directory %s", op->arg( 0 ).latin1() );
+ tqDebug( "Couldn't create directory %s", op->arg( 0 ).latin1() );
else
- qDebug( "Successfully created directory %s", op->arg( 0 ).latin1() );
+ tqDebug( "Successfully created directory %s", op->arg( 0 ).latin1() );
break;
// ... and so on
}
@@ -179,24 +179,24 @@ void MyClass::slotInsertEntries( const QValueList<QUrlInfo> &info, QNetworkOpera
QValueList<QUrlInfo>::ConstIterator it = info.begin();
for ( ; it != info.end(); ++it ) {
const QUrlInfo &inf = *it;
- qDebug( "Name: %s, Size: %d, Last Modified: %s",
+ tqDebug( "Name: %s, Size: %d, Last Modified: %s",
inf.name().latin1(), inf.size(), inf.lastModified().toString().latin1() );
}
}
void MyClass::slotStart( QNetworkOperation * )
{
- qDebug( "Start reading '%s'", op.toString().latin1() );
+ tqDebug( "Start reading '%s'", op.toString().latin1() );
}
void MyClass::slotFinished( QNetworkOperation *operation )
{
if ( operation->operation() == QNetworkProtocol::OpListChildren ) {
if ( operation->state() == QNetworkProtocol::StFailed )
- qDebug( "Couldn't read '%s'! Following error occurred: %s",
+ tqDebug( "Couldn't read '%s'! Following error occurred: %s",
op.toString().latin1(), operation->protocolDetail().latin1() );
else
- qDebug( "Finished reading '%s'!", op.toString().latin1() );
+ tqDebug( "Finished reading '%s'!", op.toString().latin1() );
}
}