diff options
Diffstat (limited to 'doc/man/man3/qftp.3qt')
-rw-r--r-- | doc/man/man3/qftp.3qt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/qftp.3qt b/doc/man/man3/qftp.3qt index a1b5c450b..94e822485 100644 --- a/doc/man/man3/qftp.3qt +++ b/doc/man/man3/qftp.3qt @@ -34,7 +34,7 @@ Inherits QNetworkProtocol. .BI "enum \fBCommand\fR { None, ConnectToHost, Login, Close, List, Cd, Get, Put, Remove, Mkdir, Rmdir, Rename, RawCommand }" .br .ti -1c -.BI "int \fBconnectToHost\fR ( const QString & host, Q_UINT16 port = 21 )" +.BI "int \fBconnectToHost\fR ( const QString & host, TQ_UINT16 port = 21 )" .br .ti -1c .BI "int \fBlogin\fR ( const QString & user = QString::null, const QString & password = QString::null )" @@ -73,10 +73,10 @@ Inherits QNetworkProtocol. .BI "int \fBrawCommand\fR ( const QString & command )" .br .ti -1c -.BI "Q_ULONG \fBbytesAvailable\fR () const" +.BI "TQ_ULONG \fBbytesAvailable\fR () const" .br .ti -1c -.BI "Q_LONG \fBreadBlock\fR ( char * data, Q_ULONG maxlen )" +.BI "TQ_LONG \fBreadBlock\fR ( char * data, TQ_ULONG maxlen )" .br .ti -1c .BI "QByteArray \fBreadAll\fR ()" @@ -372,7 +372,7 @@ If you don't start further FTP commands directly after the abort(), there won't See also clearPendingCommands(). .PP Example: network/ftpclient/ftpmainwindow.ui.h. -.SH "Q_ULONG QFtp::bytesAvailable () const" +.SH "TQ_ULONG QFtp::bytesAvailable () const" Returns the number of bytes that can be read from the data socket at the moment. .PP See also get(), readyRead(), readBlock(), and readAll(). @@ -414,7 +414,7 @@ This signal is emitted when processing the command identified by \fIid\fR starts See also commandFinished() and done(). .PP Example: network/ftpclient/ftpmainwindow.ui.h. -.SH "int QFtp::connectToHost ( const QString & host, Q_UINT16 port = 21 )" +.SH "int QFtp::connectToHost ( const QString & host, TQ_UINT16 port = 21 )" Connects to the FTP server \fIhost\fR using port \fIport\fR. .PP The stateChanged() signal is emitted when the state of the connecting process changes, e.g. to HostLookup, then Connecting, then Connected. @@ -568,7 +568,7 @@ Example: network/ftpclient/ftpmainwindow.ui.h. Reads all the bytes available from the data socket and returns them. .PP See also get(), readyRead(), bytesAvailable(), and readBlock(). -.SH "Q_LONG QFtp::readBlock ( char * data, Q_ULONG maxlen )" +.SH "TQ_LONG QFtp::readBlock ( char * data, TQ_ULONG maxlen )" Reads \fImaxlen\fR bytes from the data socket into \fIdata\fR and returns the number of bytes read. Returns -1 if an error occurred. .PP See also get(), readyRead(), bytesAvailable(), and readAll(). |