diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/kernel/qurloperator.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/kernel/qurloperator.cpp')
-rw-r--r-- | src/kernel/qurloperator.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/kernel/qurloperator.cpp b/src/kernel/qurloperator.cpp index 902f915..1e1b666 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 - tqInitNetworkProtocols() registered\endlink): + qInitNetworkProtocols() 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 - tqInitNetworkProtocols() function. The protocols currently + qInitNetworkProtocols() function. The protocols currently supported are: \list \i \link QFtp FTP\endlink, @@ -293,7 +293,7 @@ QUrlOperator::QUrlOperator() : QUrl() { #ifdef QURLOPERATOR_DEBUG - tqDebug( "QUrlOperator: cstr 1" ); + qDebug( "QUrlOperator: cstr 1" ); #endif d = new QUrlOperatorPrivate; } @@ -309,7 +309,7 @@ QUrlOperator::QUrlOperator( const QString &url ) : QUrl( url ) { #ifdef QURLOPERATOR_DEBUG - tqDebug( "QUrlOperator: cstr 2" ); + qDebug( "QUrlOperator: cstr 2" ); #endif d = new QUrlOperatorPrivate; getNetworkProtocol(); @@ -323,7 +323,7 @@ QUrlOperator::QUrlOperator( const QUrlOperator& url ) : QObject(), QUrl( url ) { #ifdef QURLOPERATOR_DEBUG - tqDebug( "QUrlOperator: cstr 3" ); + qDebug( "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 - tqDebug( "QUrlOperator: cstr 4" ); + qDebug( "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 - tqDebug( "QUrlOperator: dstr" ); + qDebug( "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 - tqDebug( "QUrlOperator: copy %s %s %d", from.latin1(), to.latin1(), move ); + qDebug( "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 - tqDebug( "QUrlOperator: copy operation should start now..." ); + qDebug( "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 - tqDebug( "QUrlOperator: copyGotData: %d new bytes", data_.size() ); + qDebug( "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 ) { - tqDebug( "QUrlOperator: continue copy (get finished, put will start)" ); + qDebug( "QUrlOperator: continue copy (get finished, put will start)" ); } #endif @@ -1134,7 +1134,7 @@ void QUrlOperator::continueCopy( QNetworkOperation *op ) void QUrlOperator::finishedCopy() { #ifdef QURLOPERATOR_DEBUG - tqDebug( "QUrlOperator: finished copy (finished putting)" ); + qDebug( "QUrlOperator: finished copy (finished putting)" ); #endif if ( d->waitingCopies.isEmpty() ) |