diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-09 22:25:47 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-09 22:25:47 -0500 |
commit | eaa7ee2e0bbca40ba3173c4304f81957e8964291 (patch) | |
tree | 4f793aa48a5080aedc94ce6e519c3b86708f2b88 /tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp | |
parent | 79a9d7a46a20d4a0923bc06fc471fdc2176ef865 (diff) | |
download | experimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.tar.gz experimental-eaa7ee2e0bbca40ba3173c4304f81957e8964291.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
Diffstat (limited to 'tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp')
-rw-r--r-- | tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp b/tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp index 83cc094..d980b35 100644 --- a/tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp +++ b/tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp @@ -138,7 +138,7 @@ public: This signal is emitted after listChildren() was called and new tqchildren (files) have been read from the list of files. \a i holds the information about the new tqchildren. \a op is the pointer to - the operation object which tqcontains all the information about the + the operation object which contains all the information about the operation, including the state, etc. When a protocol emits this signal, TQNetworkProtocol is smart @@ -160,7 +160,7 @@ public: TQNetworkProtocol automatically connects it to a slot which creates a list of TQUrlInfo objects (with just one TQUrlInfo \a i) and emits the newChildren() signal with this list. \a op is the pointer to - the operation object which tqcontains all the information about the + the operation object which contains all the information about the operation that has finished, including the state, etc. This is just a convenience signal useful for implementing your own @@ -173,7 +173,7 @@ public: This signal is emitted when an operation finishes. This signal is always emitted, for both success and failure. \a op is the 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, etc. Check the state and error code of the operation object to determine whether or not the operation was successful. @@ -188,7 +188,7 @@ public: Some operations (such as listChildren()) emit this signal when they start processing the operation. \a op is the 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, etc. When a protocol emits this signal, TQNetworkProtocol is smart @@ -202,7 +202,7 @@ public: This signal is emitted when mkdir() has been succesful and the directory has been created. \a i holds the information about the new directory. \a op is the pointer to the operation object which - tqcontains all the information about the operation, including the + contains all the information about the operation, including the state, etc. Using op->arg( 0 ), you can get the file name of the new directory. @@ -217,7 +217,7 @@ public: This signal is emitted when remove() has been succesful and the file has been removed. \a op holds the file name of the removed file in the first argument, accessible with op->arg( 0 ). \a op is - the pointer to the operation object which tqcontains all the + the pointer to the operation object which contains all the information about the operation, including the state, etc. When a protocol emits this signal, TQNetworkProtocol is smart @@ -233,7 +233,7 @@ public: holds the original and the new file names in the first and second arguments, accessible with op->arg( 0 ) and op->arg( 1 ) respectively. \a op is the pointer to the operation object which - tqcontains all the information about the operation, including the + contains all the information about the operation, including the state, etc. When a protocol emits this signal, TQNetworkProtocol is smart @@ -250,7 +250,7 @@ public: which data is retrieved or uploaded in its first argument, and the (raw) data in its second argument. You can get them with op->arg( 0 ) and op->rawArg( 1 ). \a op is the 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, etc. When a protocol emits this signal, TQNetworkProtocol is smart @@ -265,7 +265,7 @@ public: get()). \a bytesDone is how many bytes of \a bytesTotal have been transferred. \a bytesTotal may be -1, which means that the total number of bytes is not known. \a op is the 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, etc. When a protocol emits this signal, TQNetworkProtocol is smart @@ -285,7 +285,7 @@ public: /*! \enum TQNetworkProtocol::State - This enum tqcontains the state that a TQNetworkOperation can have. + This enum contains the state that a TQNetworkOperation can have. \value StWaiting The operation is in the TQNetworkProtocol's queue waiting to be prcessed. @@ -604,7 +604,7 @@ TQNetworkProtocol *TQNetworkProtocol::getNetworkProtocol( const TQString &protoc if ( protocol.isNull() ) return 0; - TQNetworkProtocolFactoryBase *factory = qNetworkProtocolRegister->tqfind( protocol ); + TQNetworkProtocolFactoryBase *factory = qNetworkProtocolRegister->find( protocol ); if ( factory ) return factory->createObject(); @@ -689,7 +689,7 @@ void TQNetworkProtocol::processOperation( TQNetworkOperation *op ) at the example implementation in examples/network/networkprotocol/nntp.cpp. - \a op is the pointer to the operation object which tqcontains all + \a op is the pointer to the operation object which contains all the information on the operation that has finished, including the state, etc. */ @@ -711,7 +711,7 @@ void TQNetworkProtocol::operationListChildren( TQNetworkOperation * ) at the example implementation in examples/network/networkprotocol/nntp.cpp. - \a op is the pointer to the operation object which tqcontains all + \a op is the pointer to the operation object which contains all the information on the operation that has finished, including the state, etc. */ @@ -733,7 +733,7 @@ void TQNetworkProtocol::operationMkDir( TQNetworkOperation * ) look at the example implementation in examples/network/networkprotocol/nntp.cpp. - \a op is the pointer to the operation object which tqcontains all + \a op is the pointer to the operation object which contains all the information on the operation that has finished, including the state, etc. */ @@ -755,7 +755,7 @@ void TQNetworkProtocol::operationRemove( TQNetworkOperation * ) at the example implementation in examples/network/networkprotocol/nntp.cpp. - \a op is the pointer to the operation object which tqcontains all + \a op is the pointer to the operation object which contains all the information on the operation that has finished, including the state, etc. */ @@ -777,7 +777,7 @@ void TQNetworkProtocol::operationRename( TQNetworkOperation * ) at the example implementation in examples/network/networkprotocol/nntp.cpp. - \a op is the pointer to the operation object which tqcontains all + \a op is the pointer to the operation object which contains all the information on the operation that has finished, including the state, etc. */ @@ -799,7 +799,7 @@ void TQNetworkProtocol::operationGet( TQNetworkOperation * ) at the example implementation in examples/network/networkprotocol/nntp.cpp. - \a op is the pointer to the operation object which tqcontains all + \a op is the pointer to the operation object which contains all the information on the operation that has finished, including the state, etc. */ |