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/qlocalfs.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/kernel/qlocalfs.cpp')
-rw-r--r-- | src/kernel/qlocalfs.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/kernel/qlocalfs.cpp b/src/kernel/qlocalfs.cpp index e3b4334..e6017f6 100644 --- a/src/kernel/qlocalfs.cpp +++ b/src/kernel/qlocalfs.cpp @@ -73,7 +73,7 @@ \endcode This code will only work if the QLocalFs class is registered; to - register the class, you must call tqInitNetworkProtocols() before + register the class, you must call qInitNetworkProtocols() before using a QUrlOperator with QLocalFs. If you really need to use QLocalFs directly, don't forget @@ -122,7 +122,7 @@ static int convertPermissions(QFileInfo *fi) void QLocalFs::operationListChildren( QNetworkOperation *op ) { #ifdef QLOCALFS_DEBUG - tqDebug( "QLocalFs: operationListChildren" ); + qDebug( "QLocalFs: operationListChildren" ); #endif op->setState( StInProgress ); @@ -171,7 +171,7 @@ void QLocalFs::operationListChildren( QNetworkOperation *op ) void QLocalFs::operationMkDir( QNetworkOperation *op ) { #ifdef QLOCALFS_DEBUG - tqDebug( "QLocalFs: operationMkDir" ); + qDebug( "QLocalFs: operationMkDir" ); #endif op->setState( StInProgress ); QString dirname = op->arg( 0 ); @@ -202,7 +202,7 @@ void QLocalFs::operationMkDir( QNetworkOperation *op ) void QLocalFs::operationRemove( QNetworkOperation *op ) { #ifdef QLOCALFS_DEBUG - tqDebug( "QLocalFs: operationRemove" ); + qDebug( "QLocalFs: operationRemove" ); #endif op->setState( StInProgress ); QString name = QUrl( op->arg( 0 ) ).path(); @@ -236,7 +236,7 @@ void QLocalFs::operationRemove( QNetworkOperation *op ) void QLocalFs::operationRename( QNetworkOperation *op ) { #ifdef QLOCALFS_DEBUG - tqDebug( "QLocalFs: operationRename" ); + qDebug( "QLocalFs: operationRename" ); #endif op->setState( StInProgress ); QString oldname = op->arg( 0 ); @@ -263,7 +263,7 @@ void QLocalFs::operationRename( QNetworkOperation *op ) void QLocalFs::operationGet( QNetworkOperation *op ) { #ifdef QLOCALFS_DEBUG - tqDebug( "QLocalFs: operationGet" ); + qDebug( "QLocalFs: operationGet" ); #endif op->setState( StInProgress ); QString from = QUrl( op->arg( 0 ) ).path(); @@ -271,7 +271,7 @@ void QLocalFs::operationGet( QNetworkOperation *op ) QFile f( from ); if ( !f.open( IO_ReadOnly ) ) { #ifdef QLOCALFS_DEBUG - tqDebug( "QLocalFs: could not open %s", from.latin1() ); + qDebug( "QLocalFs: could not open %s", from.latin1() ); #endif QString msg = tr( "Could not open\n%1" ).arg( from ); op->setState( StFailed ); @@ -291,7 +291,7 @@ void QLocalFs::operationGet( QNetworkOperation *op ) emit data( s, op ); emit dataTransferProgress( f.size(), f.size(), op ); #ifdef QLOCALFS_DEBUG - tqDebug( "QLocalFs: got all %d bytes at once", f.size() ); + qDebug( "QLocalFs: got all %d bytes at once", f.size() ); #endif } else { s.resize( blockSize ); @@ -317,7 +317,7 @@ void QLocalFs::operationGet( QNetworkOperation *op ) if (!that) return; #ifdef QLOCALFS_DEBUG - tqDebug( "QLocalFs: got all %d bytes step by step", f.size() ); + qDebug( "QLocalFs: got all %d bytes step by step", f.size() ); #endif emit dataTransferProgress( f.size(), f.size(), op ); } @@ -334,7 +334,7 @@ void QLocalFs::operationGet( QNetworkOperation *op ) void QLocalFs::operationPut( QNetworkOperation *op ) { #ifdef QLOCALFS_DEBUG - tqDebug( "QLocalFs: operationPut" ); + qDebug( "QLocalFs: operationPut" ); #endif op->setState( StInProgress ); QString to = QUrl( op->arg( 0 ) ).path(); |