summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp')
-rw-r--r--experimental/tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/experimental/tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp b/experimental/tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp
index 83cc0942c..d980b357d 100644
--- a/experimental/tqtinterface/qt4/src/kernel/tqnetworkprotocol.cpp
+++ b/experimental/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.
*/