diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-26 11:44:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-30 14:26:34 +0900 |
commit | 6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch) | |
tree | 0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tqprogressbar.3qt | |
parent | ff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff) | |
download | tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.tar.gz tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.zip |
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqprogressbar.3qt')
-rw-r--r-- | doc/man/man3/tqprogressbar.3qt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/man/man3/tqprogressbar.3qt b/doc/man/man3/tqprogressbar.3qt index 30ffde923..9ead5bdf8 100644 --- a/doc/man/man3/tqprogressbar.3qt +++ b/doc/man/man3/tqprogressbar.3qt @@ -128,11 +128,11 @@ The \fIparent\fR, \fIname\fR and widget flags, \fIf\fR, are passed to the TQFram .PP See also totalSteps and progress. .SH "bool TQProgressBar::centerIndicator () const" -Returns TRUE if the indicator string should be centered; otherwise returns FALSE. See the "centerIndicator" property for details. +Returns true if the indicator string should be centered; otherwise returns false. See the "centerIndicator" property for details. .SH "bool TQProgressBar::indicatorFollowsStyle () const" -Returns TRUE if the display of the indicator string should follow the GUI style; otherwise returns FALSE. See the "indicatorFollowsStyle" property for details. +Returns true if the display of the indicator string should follow the GUI style; otherwise returns false. See the "indicatorFollowsStyle" property for details. .SH "bool TQProgressBar::percentageVisible () const" -Returns TRUE if the current progress value is displayed; otherwise returns FALSE. See the "percentageVisible" property for details. +Returns true if the current progress value is displayed; otherwise returns false. See the "percentageVisible" property for details. .SH "int TQProgressBar::progress () const" Returns the current amount of progress. See the "progress" property for details. .SH "const TQString & TQProgressBar::progressString () const" @@ -151,7 +151,7 @@ The \fIprogress\fR may be negative, indicating that the progress bar is in the " .PP The default implementation is the percentage of completion or blank in the reset state. The percentage is calculated based on the \fIprogress\fR and \fItotalSteps\fR. You can set the \fIindicator\fR text if you wish. .PP -To allow efficient repainting of the progress bar, this method should return FALSE if the string is unchanged from the last call to this function. +To allow efficient repainting of the progress bar, this method should return false if the string is unchanged from the last call to this function. .SH "void TQProgressBar::setIndicatorFollowsStyle ( bool )" Sets whether the display of the indicator string should follow the GUI style. See the "indicatorFollowsStyle" property for details. .SH "void TQProgressBar::setPercentageVisible ( bool )" @@ -172,13 +172,13 @@ Returns the total number of steps. See the "totalSteps" property for details. .SH "bool centerIndicator" This property holds whether the indicator string should be centered. .PP -Changing this property sets TQProgressBar::indicatorFollowsStyle to FALSE. The default is TRUE. +Changing this property sets TQProgressBar::indicatorFollowsStyle to false. The default is true. .PP Set this property's value with setCenterIndicator() and get this property's value with centerIndicator(). .SH "bool indicatorFollowsStyle" This property holds whether the display of the indicator string should follow the GUI style. .PP -The default is TRUE. +The default is true. .PP See also centerIndicator. .PP @@ -186,7 +186,7 @@ Set this property's value with setIndicatorFollowsStyle() and get this property' .SH "bool percentageVisible" This property holds whether the current progress value is displayed. .PP -The default is TRUE. +The default is true. .PP See also centerIndicator and indicatorFollowsStyle. .PP |