diff options
Diffstat (limited to 'doc/man/man3/tqftp.3qt')
-rw-r--r-- | doc/man/man3/tqftp.3qt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/tqftp.3qt b/doc/man/man3/tqftp.3qt index b09cac641..d11610054 100644 --- a/doc/man/man3/tqftp.3qt +++ b/doc/man/man3/tqftp.3qt @@ -212,19 +212,19 @@ For this example the following sequence of signals is emitted (with small variat .br stateChanged( Connected ) .br - finished( 1, FALSE ) + finished( 1, false ) .br .br start( 2 ) .br stateChanged( LoggedIn ) .br - finished( 2, FALSE ) + finished( 2, false ) .br .br start( 3 ) .br - finished( 3, FALSE ) + finished( 3, false ) .br .br start( 4 ) @@ -239,7 +239,7 @@ For this example the following sequence of signals is emitted (with small variat .br readyRead() .br - finished( 4, FALSE ) + finished( 4, false ) .br .br start( 5 ) @@ -248,10 +248,10 @@ For this example the following sequence of signals is emitted (with small variat .br stateChanged( Unconnected ) .br - finished( 5, FALSE ) + finished( 5, false ) .br .br - done( FALSE ) + done( false ) .br .fi .PP @@ -269,15 +269,15 @@ If the login fails for the above example, the signals would look like this: .br stateChanged( Connected ) .br - finished( 1, FALSE ) + finished( 1, false ) .br .br start( 2 ) .br - finished( 2, TRUE ) + finished( 2, true ) .br .br - done( TRUE ) + done( true ) .br .fi .PP @@ -403,7 +403,7 @@ See also stateChanged(), commandStarted(), and commandFinished(). .PP Example: network/ftpclient/ftpmainwindow.ui.h. .SH "void TQFtp::commandFinished ( int id, bool error )\fC [signal]\fR" -This signal is emitted when processing the command identified by \fIid\fR has finished. \fIerror\fR is TRUE if an error occurred during the processing; otherwise \fIerror\fR is FALSE. +This signal is emitted when processing the command identified by \fIid\fR has finished. \fIerror\fR is true if an error occurred during the processing; otherwise \fIerror\fR is false. .PP See also commandStarted(), done(), error(), and errorString(). .PP @@ -455,7 +455,7 @@ See also get(), put(), and TQProgressBar::progress. .PP Example: network/ftpclient/ftpmainwindow.ui.h. .SH "void TQFtp::done ( bool error )\fC [signal]\fR" -This signal is emitted when the last pending command has finished; (it is emitted after the last command's commandFinished() signal). \fIerror\fR is TRUE if an error occurred during the processing; otherwise \fIerror\fR is FALSE. +This signal is emitted when the last pending command has finished; (it is emitted after the last command's commandFinished() signal). \fIerror\fR is true if an error occurred during the processing; otherwise \fIerror\fR is false. .PP See also commandFinished(), error(), and errorString(). .PP @@ -489,7 +489,7 @@ See also readyRead(), dataTransferProgress(), commandStarted(), and commandFinis .PP Example: network/ftpclient/ftpmainwindow.ui.h. .SH "bool TQFtp::hasPendingCommands () const" -Returns TRUE if there are any commands scheduled that have not yet been executed; otherwise returns FALSE. +Returns true if there are any commands scheduled that have not yet been executed; otherwise returns false. .PP The command that is being executed is \fInot\fR considered as a scheduled command. .PP |