summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqnetworkoperation.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqnetworkoperation.3qt')
-rw-r--r--doc/man/man3/tqnetworkoperation.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqnetworkoperation.3qt b/doc/man/man3/tqnetworkoperation.3qt
index 8bdfcb7d1..84b13be15 100644
--- a/doc/man/man3/tqnetworkoperation.3qt
+++ b/doc/man/man3/tqnetworkoperation.3qt
@@ -19,7 +19,7 @@ Inherits TQObject.
.BI "\fBQNetworkOperation\fR ( QNetworkProtocol::Operation operation, const TQString & arg0, const TQString & arg1, const TQString & arg2 )"
.br
.ti -1c
-.BI "\fBQNetworkOperation\fR ( QNetworkProtocol::Operation operation, const QByteArray & arg0, const QByteArray & arg1, const QByteArray & arg2 )"
+.BI "\fBQNetworkOperation\fR ( QNetworkProtocol::Operation operation, const TQByteArray & arg0, const TQByteArray & arg1, const TQByteArray & arg2 )"
.br
.ti -1c
.BI "\fB~QNetworkOperation\fR ()"
@@ -37,7 +37,7 @@ Inherits TQObject.
.BI "void \fBsetArg\fR ( int num, const TQString & arg )"
.br
.ti -1c
-.BI "void \fBsetRawArg\fR ( int num, const QByteArray & arg )"
+.BI "void \fBsetRawArg\fR ( int num, const TQByteArray & arg )"
.br
.ti -1c
.BI "QNetworkProtocol::Operation \fBoperation\fR () const"
@@ -49,7 +49,7 @@ Inherits TQObject.
.BI "TQString \fBarg\fR ( int num ) const"
.br
.ti -1c
-.BI "QByteArray \fBrawArg\fR ( int num ) const"
+.BI "TQByteArray \fBrawArg\fR ( int num ) const"
.br
.ti -1c
.BI "TQString \fBprotocolDetail\fR () const"
@@ -74,7 +74,7 @@ See also QNetworkProtocol and Input/Output and Networking.
Constructs a network operation object. \fIoperation\fR is the type of the operation, and \fIarg0\fR, \fIarg1\fR and \fIarg2\fR are the first three arguments of the operation. The state is initialized to QNetworkProtocol::StWaiting.
.PP
See also QNetworkProtocol::Operation and QNetworkProtocol::State.
-.SH "QNetworkOperation::QNetworkOperation ( QNetworkProtocol::Operation operation, const QByteArray & arg0, const QByteArray & arg1, const QByteArray & arg2 )"
+.SH "QNetworkOperation::QNetworkOperation ( QNetworkProtocol::Operation operation, const TQByteArray & arg0, const TQByteArray & arg1, const TQByteArray & arg2 )"
Constructs a network operation object. \fIoperation\fR is the type of the operation, and \fIarg0\fR, \fIarg1\fR and \fIarg2\fR are the first three raw data arguments of the operation. The state is initialized to QNetworkProtocol::StWaiting.
.PP
See also QNetworkProtocol::Operation and QNetworkProtocol::State.
@@ -96,7 +96,7 @@ Note: you should never need to call the method yourself.
Returns the type of the operation.
.SH "TQString QNetworkOperation::protocolDetail () const"
Returns a detailed error message for the last error. This must have been set using setProtocolDetail().
-.SH "QByteArray QNetworkOperation::rawArg ( int num ) const"
+.SH "TQByteArray QNetworkOperation::rawArg ( int num ) const"
Returns the operation's \fInum\fR-th raw data argument. If this argument was not already set, an empty bytearray is returned.
.SH "void QNetworkOperation::setArg ( int num, const TQString & arg )"
Sets the network operation's \fInum\fR-th argument to \fIarg\fR.
@@ -108,7 +108,7 @@ If the operation failed, the protocol should set an error code to describe the e
See also setProtocolDetail() and QNetworkProtocol::Error.
.SH "void QNetworkOperation::setProtocolDetail ( const TQString & detail )"
If the operation failed, the error message can be specified as \fIdetail\fR.
-.SH "void QNetworkOperation::setRawArg ( int num, const QByteArray & arg )"
+.SH "void QNetworkOperation::setRawArg ( int num, const TQByteArray & arg )"
Sets the network operation's \fInum\fR-th raw data argument to \fIarg\fR.
.SH "void QNetworkOperation::setState ( QNetworkProtocol::State state )"
Sets the \fIstate\fR of the operation object. This should be done by the network protocol during processing; at the end it should be set to QNetworkProtocol::StDone or QNetworkProtocol::StFailed, depending on success or failure.