summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqtabbar.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/tqtabbar.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/tqtabbar.3qt')
-rw-r--r--doc/man/man3/tqtabbar.3qt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/man3/tqtabbar.3qt b/doc/man/man3/tqtabbar.3qt
index 35b01c984..dc9ccf541 100644
--- a/doc/man/man3/tqtabbar.3qt
+++ b/doc/man/man3/tqtabbar.3qt
@@ -195,7 +195,7 @@ Sets \fInewTab\fR's id to a new id. If the tab's label contains an ampersand, th
.PP
See also addTab().
.SH "bool QTabBar::isTabEnabled ( int id ) const"
-Returns TRUE if the tab with id \fIid\fR exists and is enabled; otherwise returns FALSE.
+Returns true if the tab with id \fIid\fR exists and is enabled; otherwise returns false.
.PP
See also setTabEnabled().
.SH "int QTabBar::keyboardFocusTab () const"
@@ -205,7 +205,7 @@ QTabBar emits the signal whenever the layout of the tab bar has been recalculate
.SH "void QTabBar::layoutTabs ()\fC [virtual]\fR"
Lays out all existing tabs according to their label and their iconset.
.SH "void QTabBar::paint ( QPainter * p, QTab * t, bool selected ) const\fC [virtual protected]\fR"
-Paints the tab \fIt\fR using painter \fIp\fR. If and only if \fIselected\fR is TRUE, \fIt\fR is drawn currently selected.
+Paints the tab \fIt\fR using painter \fIp\fR. If and only if \fIselected\fR is true, \fIt\fR is drawn currently selected.
.PP
This virtual function may be reimplemented to change the look of QTabBar. If you decide to reimplement it, you may also need to reimplement sizeHint().
.SH "void QTabBar::paintEvent ( QPaintEvent * e )\fC [virtual protected]\fR"
@@ -215,7 +215,7 @@ See also paint().
.PP
Reimplemented from TQWidget.
.SH "void QTabBar::paintLabel ( QPainter * p, const QRect & br, QTab * t, bool has_focus ) const\fC [virtual protected]\fR"
-Paints the label of tab \fIt\fR centered in rectangle \fIbr\fR using painter \fIp\fR. A focus indication is drawn if \fIhas_focus\fR is TRUE.
+Paints the label of tab \fIt\fR centered in rectangle \fIbr\fR using painter \fIp\fR. A focus indication is drawn if \fIhas_focus\fR is true.
.SH "void QTabBar::removeTab ( QTab * t )\fC [virtual]\fR"
Removes tab \fIt\fR from the tab control, and deletes the tab.
.SH "void QTabBar::removeToolTip ( int index )"
@@ -239,7 +239,7 @@ See also currentTab and selected().
.SH "void QTabBar::setShape ( Shape )\fC [virtual]\fR"
Sets the shape of the tabs in the tab bar. See the "shape" property for details.
.SH "void QTabBar::setTabEnabled ( int id, bool enabled )\fC [virtual]\fR"
-Enables tab \fIid\fR if \fIenabled\fR is TRUE or disables it if \fIenabled\fR is FALSE. If \fIid\fR is currently selected, setTabEnabled(FALSE) makes another tab selected.
+Enables tab \fIid\fR if \fIenabled\fR is true or disables it if \fIenabled\fR is false. If \fIid\fR is currently selected, setTabEnabled(false) makes another tab selected.
.PP
setTabEnabled() updates the display if this causes a change in \fIid\fR's status.
.PP