summaryrefslogtreecommitdiffstats
path: root/src/kernel/qurloperator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qurloperator.cpp')
-rw-r--r--src/kernel/qurloperator.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/kernel/qurloperator.cpp b/src/kernel/qurloperator.cpp
index 1e1b666..902f915 100644
--- a/src/kernel/qurloperator.cpp
+++ b/src/kernel/qurloperator.cpp
@@ -122,7 +122,7 @@ public:
A QUrlOperator can be used like this, for example to download a
file (and assuming that the FTP protocol is \link
- qInitNetworkProtocols() registered\endlink):
+ tqInitNetworkProtocols() registered\endlink):
\code
QUrlOperator *op = new QUrlOperator();
op->copy( QString("ftp://ftp.trolltech.com/qt/source/qt-2.1.0.tar.gz"),
@@ -148,7 +148,7 @@ public:
handling deals with this problem.
To register the available network protocols, use the
- qInitNetworkProtocols() function. The protocols currently
+ tqInitNetworkProtocols() function. The protocols currently
supported are:
\list
\i \link QFtp FTP\endlink,
@@ -293,7 +293,7 @@ QUrlOperator::QUrlOperator()
: QUrl()
{
#ifdef QURLOPERATOR_DEBUG
- qDebug( "QUrlOperator: cstr 1" );
+ tqDebug( "QUrlOperator: cstr 1" );
#endif
d = new QUrlOperatorPrivate;
}
@@ -309,7 +309,7 @@ QUrlOperator::QUrlOperator( const QString &url )
: QUrl( url )
{
#ifdef QURLOPERATOR_DEBUG
- qDebug( "QUrlOperator: cstr 2" );
+ tqDebug( "QUrlOperator: cstr 2" );
#endif
d = new QUrlOperatorPrivate;
getNetworkProtocol();
@@ -323,7 +323,7 @@ QUrlOperator::QUrlOperator( const QUrlOperator& url )
: QObject(), QUrl( url )
{
#ifdef QURLOPERATOR_DEBUG
- qDebug( "QUrlOperator: cstr 3" );
+ tqDebug( "QUrlOperator: cstr 3" );
#endif
d = new QUrlOperatorPrivate;
*d = *url.d;
@@ -345,7 +345,7 @@ QUrlOperator::QUrlOperator( const QUrlOperator& url, const QString& relUrl, bool
: QUrl( url, relUrl, checkSlash )
{
#ifdef QURLOPERATOR_DEBUG
- qDebug( "QUrlOperator: cstr 4" );
+ tqDebug( "QUrlOperator: cstr 4" );
#endif
d = new QUrlOperatorPrivate;
if ( relUrl == "." )
@@ -363,7 +363,7 @@ QUrlOperator::QUrlOperator( const QUrlOperator& url, const QString& relUrl, bool
QUrlOperator::~QUrlOperator()
{
#ifdef QURLOPERATOR_DEBUG
- qDebug( "QUrlOperator: dstr" );
+ tqDebug( "QUrlOperator: dstr" );
#endif
delete d;
}
@@ -570,7 +570,7 @@ const QNetworkOperation *QUrlOperator::rename( const QString &oldname, const QSt
QPtrList<QNetworkOperation> QUrlOperator::copy( const QString &from, const QString &to, bool move, bool toPath )
{
#ifdef QURLOPERATOR_DEBUG
- qDebug( "QUrlOperator: copy %s %s %d", from.latin1(), to.latin1(), move );
+ tqDebug( "QUrlOperator: copy %s %s %d", from.latin1(), to.latin1(), move );
#endif
QPtrList<QNetworkOperation> ops;
@@ -644,7 +644,7 @@ QPtrList<QNetworkOperation> QUrlOperator::copy( const QString &from, const QStri
gProt->setAutoDelete( TRUE );
}
#ifdef QURLOPERATOR_DEBUG
- qDebug( "QUrlOperator: copy operation should start now..." );
+ tqDebug( "QUrlOperator: copy operation should start now..." );
#endif
return ops;
} else {
@@ -1063,7 +1063,7 @@ bool QUrlOperator::checkValid()
void QUrlOperator::copyGotData( const QByteArray &data_, QNetworkOperation *op )
{
#ifdef QURLOPERATOR_DEBUG
- qDebug( "QUrlOperator: copyGotData: %d new bytes", data_.size() );
+ tqDebug( "QUrlOperator: copyGotData: %d new bytes", data_.size() );
#endif
QNetworkOperation *put = d->getOpPutOpMap[ (void*)op ];
if ( put ) {
@@ -1089,7 +1089,7 @@ void QUrlOperator::continueCopy( QNetworkOperation *op )
#ifdef QURLOPERATOR_DEBUG
if ( op->state() != QNetworkProtocol::StFailed ) {
- qDebug( "QUrlOperator: continue copy (get finished, put will start)" );
+ tqDebug( "QUrlOperator: continue copy (get finished, put will start)" );
}
#endif
@@ -1134,7 +1134,7 @@ void QUrlOperator::continueCopy( QNetworkOperation *op )
void QUrlOperator::finishedCopy()
{
#ifdef QURLOPERATOR_DEBUG
- qDebug( "QUrlOperator: finished copy (finished putting)" );
+ tqDebug( "QUrlOperator: finished copy (finished putting)" );
#endif
if ( d->waitingCopies.isEmpty() )