diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-31 13:38:31 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-31 13:43:03 +0900 |
| commit | 6e4a70d41a2636ce99a1da7b6827ac5685ed3186 (patch) | |
| tree | b029ebf1d5be6d1ac0ee361e7bfb68a7dbed0eec /doc/man/man3/tqftp.3qt | |
| parent | 81ade129093a279e6537db25710583fd2bba9427 (diff) | |
| download | tqt-6e4a70d41a2636ce99a1da7b6827ac5685ed3186.tar.gz tqt-6e4a70d41a2636ce99a1da7b6827ac5685ed3186.zip | |
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked and manually edited from commit 6dd781c483eea56f51ae0eff47d857976b5d0f0d)
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 3ed98be4d..b8e9f9d0f 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 QFtp::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 QProgressBar::progress. .PP Example: network/ftpclient/ftpmainwindow.ui.h. .SH "void QFtp::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 QFtp::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 |
