summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqstatusbar.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-31 13:38:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-31 13:43:03 +0900
commit6e4a70d41a2636ce99a1da7b6827ac5685ed3186 (patch)
treeb029ebf1d5be6d1ac0ee361e7bfb68a7dbed0eec /doc/man/man3/tqstatusbar.3qt
parent81ade129093a279e6537db25710583fd2bba9427 (diff)
downloadtqt-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/tqstatusbar.3qt')
-rw-r--r--doc/man/man3/tqstatusbar.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqstatusbar.3qt b/doc/man/man3/tqstatusbar.3qt
index 1e0cc38c7..45f7e25a1 100644
--- a/doc/man/man3/tqstatusbar.3qt
+++ b/doc/man/man3/tqstatusbar.3qt
@@ -22,7 +22,7 @@ Inherits TQWidget.
.BI "virtual \fB~QStatusBar\fR ()"
.br
.ti -1c
-.BI "virtual void \fBaddWidget\fR ( TQWidget * widget, int stretch = 0, bool permanent = FALSE )"
+.BI "virtual void \fBaddWidget\fR ( TQWidget * widget, int stretch = 0, bool permanent = false )"
.br
.ti -1c
.BI "virtual void \fBremoveWidget\fR ( TQWidget * widget )"
@@ -108,7 +108,7 @@ To display a \fItemporary\fR message, call message() (perhaps by connecting a su
.br
.fi
.PP
-By default QStatusBar provides a QSizeGrip in the lower-right corner. You can disable it with setSizeGripEnabled(FALSE);
+By default QStatusBar provides a QSizeGrip in the lower-right corner. You can disable it with setSizeGripEnabled(false);
.PP
.ce 1
.B "[Image Omitted]"
@@ -125,12 +125,12 @@ Constructs a status bar called \fIname\fR with parent \fIparent\fR and with a si
See also sizeGripEnabled.
.SH "QStatusBar::~QStatusBar ()\fC [virtual]\fR"
Destroys the status bar and frees any allocated resources and child widgets.
-.SH "void QStatusBar::addWidget ( TQWidget * widget, int stretch = 0, bool permanent = FALSE )\fC [virtual]\fR"
+.SH "void QStatusBar::addWidget ( TQWidget * widget, int stretch = 0, bool permanent = false )\fC [virtual]\fR"
Adds \fIwidget\fR to this status bar. \fIwidget\fR is reparented if it isn't already a child of the QStatusBar.
.PP
-\fIwidget\fR is permanently visible if \fIpermanent\fR is TRUE and may be obscured by temporary messages if \fIpermanent\fR is FALSE. The default is FALSE.
+\fIwidget\fR is permanently visible if \fIpermanent\fR is true and may be obscured by temporary messages if \fIpermanent\fR is false. The default is false.
.PP
-If \fIpermanent\fR is TRUE, \fIwidget\fR is located at the far right of the status bar. If \fIpermanent\fR is FALSE (the default), \fIwidget\fR is located just to the left of the first permanent widget.
+If \fIpermanent\fR is true, \fIwidget\fR is located at the far right of the status bar. If \fIpermanent\fR is false (the default), \fIwidget\fR is located just to the left of the first permanent widget.
.PP
\fIstretch\fR is used to compute a suitable size for \fIwidget\fR as the status bar grows and shrinks. The default of 0 uses a minimum of space.
.PP
@@ -144,7 +144,7 @@ See also message().
.SH "void QStatusBar::hideOrShow ()\fC [protected]\fR"
Ensures that the right widgets are visible. Used by message() and clear().
.SH "bool QStatusBar::isSizeGripEnabled () const"
-Returns TRUE if the QSizeGrip in the bottom right of the status bar is enabled; otherwise returns FALSE. See the "sizeGripEnabled" property for details.
+Returns true if the QSizeGrip in the bottom right of the status bar is enabled; otherwise returns false. See the "sizeGripEnabled" property for details.
.SH "void QStatusBar::message ( const TQString & message )\fC [slot]\fR"
Hides the normal status indicators and displays \fImessage\fR until clear() or another message() is called.
.PP