diff options
Diffstat (limited to 'tqtinterface/qt4/src/kernel/tqurloperator.cpp')
-rw-r--r-- | tqtinterface/qt4/src/kernel/tqurloperator.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/tqtinterface/qt4/src/kernel/tqurloperator.cpp b/tqtinterface/qt4/src/kernel/tqurloperator.cpp index bae40bc..59c485f 100644 --- a/tqtinterface/qt4/src/kernel/tqurloperator.cpp +++ b/tqtinterface/qt4/src/kernel/tqurloperator.cpp @@ -168,7 +168,7 @@ public: This signal is emitted after listChildren() was called and new tqchildren (i.e. files) have been read from a list of files. \a i holds the information about the new files. \a op is a pointer - to the operation object which tqcontains all the information about + to the operation object which contains all the information about the operation, including the state. \sa TQNetworkOperation, TQNetworkProtocol @@ -180,7 +180,7 @@ public: This signal is emitted when an operation of some sort finishes, whether with success or failure. \a op is a pointer to the - operation object, which tqcontains all the information, including + operation object, which contains all the information, including the state, of the operation which has been finished. Check the state and error code of the operation object to see whether or not the operation was successful. @@ -193,7 +193,7 @@ public: Some operations (such as listChildren()) emit this signal when they start processing the operation. \a op is a pointer to the - operation object which tqcontains all the information about the + operation object which contains all the information about the operation, including the state. \sa TQNetworkOperation, TQNetworkProtocol @@ -205,7 +205,7 @@ public: This signal is emitted when mkdir() succeeds and the directory has been created. \a i holds the information about the new directory. - \a op is a pointer to the operation object, which tqcontains all the + \a op is a pointer to the operation object, which contains all the information about the operation, including the state. \c op->arg(0) holds the new directory's name. @@ -218,7 +218,7 @@ public: This signal is emitted when remove() has been succesful and the file has been removed. - \a op is a pointer to the operation object which tqcontains all the + \a op is a pointer to the operation object which contains all the information about the operation, including the state. \c op->arg(0) holds the name of the file that was removed. @@ -230,7 +230,7 @@ public: This signal is emitted whenever a file which is a child of the URL has been changed, for example by successfully calling rename(). - \a op is a pointer to the operation object which tqcontains all the + \a op is a pointer to the operation object which contains all the information about the operation, including the state. \c op->arg(0) holds the original file name and \c op->arg(1) holds the new file name (if it was changed). @@ -243,7 +243,7 @@ public: This signal is emitted when new \a data has been received after calling get() or put(). - \a op is a pointer to the operation object which tqcontains all + \a op is a pointer to the operation object which contains all the information about the operation, including the state. \c op->arg(0) holds the name of the file whose data is retrieved and op->rawArg(1) holds the (raw) data. @@ -268,7 +268,7 @@ public: \fn void TQUrlOperator::startedNextCopy( const TQPtrList<TQNetworkOperation> &lst ) This signal is emitted if copy() starts a new copy operation. \a - lst tqcontains all TQNetworkOperations related to this copy + lst contains all TQNetworkOperations related to this copy operation. \sa copy() @@ -434,7 +434,7 @@ const TQNetworkOperation *TQUrlOperator::startOperation( TQNetworkOperation *op Because the operation may not be executed immediately, a pointer to the TQNetworkOperation object created by this function is - returned. This object tqcontains all the data about the operation + returned. This object contains all the data about the operation and is used to refer to this operation later (e.g. in the Q_SIGNALS that are emitted by the TQUrlOperator). The return value can also be 0 if the operation object couldn't be created. @@ -464,7 +464,7 @@ const TQNetworkOperation *TQUrlOperator::listChildren() Because the operation will not be executed immediately, a pointer to the TQNetworkOperation object created by this function is - returned. This object tqcontains all the data about the operation + returned. This object contains all the data about the operation and is used to refer to this operation later (e.g. in the Q_SIGNALS that are emitted by the TQUrlOperator). The return value can also be 0 if the operation object couldn't be created. @@ -491,7 +491,7 @@ const TQNetworkOperation *TQUrlOperator::mkdir( const TQString &dirname ) Because the operation will not be executed immediately, a pointer to the TQNetworkOperation object created by this function is - returned. This object tqcontains all the data about the operation + returned. This object contains all the data about the operation and is used to refer to this operation later (e.g. in the Q_SIGNALS that are emitted by the TQUrlOperator). The return value can also be 0 if the operation object couldn't be created. @@ -519,7 +519,7 @@ const TQNetworkOperation *TQUrlOperator::remove( const TQString &filename ) Because the operation may not be executed immediately, a pointer to the TQNetworkOperation object created by this function is - returned. This object tqcontains all the data about the operation + returned. This object contains all the data about the operation and is used to refer to this operation later (e.g. in the Q_SIGNALS that are emitted by the TQUrlOperator). The return value can also be 0 if the operation object couldn't be created. @@ -713,7 +713,7 @@ bool TQUrlOperator::isDir( bool *ok ) return FALSE; } - if ( d->entryMap.tqcontains( "." ) ) { + if ( d->entryMap.contains( "." ) ) { return d->entryMap[ "." ].isDir(); } // #### can assume that we are a directory? @@ -901,7 +901,7 @@ void TQUrlOperator::addEntry( const TQValueList<TQUrlInfo> &i ) TQUrlInfo TQUrlOperator::info( const TQString &entry ) const { - if ( d->entryMap.tqcontains( entry.stripWhiteSpace() ) ) { + if ( d->entryMap.contains( entry.stripWhiteSpace() ) ) { return d->entryMap[ entry.stripWhiteSpace() ]; } else if ( entry == "." || entry == ".." ) { // return a faked TQUrlInfo @@ -1202,7 +1202,7 @@ void TQUrlOperator::slotItemChanged( TQNetworkOperation *op ) if ( op->arg( 0 ) == op->arg( 1 ) ) return; - TQMap<TQString, TQUrlInfo>::iterator mi = d->entryMap.tqfind( op->arg( 0 ) ); + TQMap<TQString, TQUrlInfo>::iterator mi = d->entryMap.find( op->arg( 0 ) ); if ( mi != d->entryMap.end() ) { mi.data().setName( op->arg( 1 ) ); d->entryMap[ op->arg( 1 ) ] = mi.data(); @@ -1212,7 +1212,7 @@ void TQUrlOperator::slotItemChanged( TQNetworkOperation *op ) } case TQNetworkProtocol::OpRemove : { - TQMap<TQString, TQUrlInfo>::iterator mi = d->entryMap.tqfind( op->arg( 0 ) ); + TQMap<TQString, TQUrlInfo>::iterator mi = d->entryMap.find( op->arg( 0 ) ); if ( mi != d->entryMap.end() ) d->entryMap.erase( mi ); break; |