summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqsize.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/tqsize.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/tqsize.3qt')
-rw-r--r--doc/man/man3/tqsize.3qt10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqsize.3qt b/doc/man/man3/tqsize.3qt
index 1df1a7b44..b2875c723 100644
--- a/doc/man/man3/tqsize.3qt
+++ b/doc/man/man3/tqsize.3qt
@@ -169,11 +169,11 @@ See also width().
Examples:
.)l movies/main.cpp, qfd/fontdisplayer.cpp, and qfd/qfd.cpp.
.SH "bool QSize::isEmpty () const"
-Returns TRUE if the width is less than or equal to 0, or the height is less than or equal to 0; otherwise returns FALSE.
+Returns true if the width is less than or equal to 0, or the height is less than or equal to 0; otherwise returns false.
.SH "bool QSize::isNull () const"
-Returns TRUE if the width is 0 and the height is 0; otherwise returns FALSE.
+Returns true if the width is 0 and the height is 0; otherwise returns false.
.SH "bool QSize::isValid () const"
-Returns TRUE if the width is equal to or greater than 0 and the height is equal to or greater than 0; otherwise returns FALSE.
+Returns true if the width is equal to or greater than 0 and the height is equal to or greater than 0; otherwise returns false.
.SH "QSize & QSize::operator*= ( int c )"
Multiplies both the width and height by \fIc\fR and returns a reference to the size.
.SH "QSize & QSize::operator*= ( double c )"
@@ -306,7 +306,7 @@ Examples:
.)l movies/main.cpp, qfd/fontdisplayer.cpp, and qfd/qfd.cpp.
.SH RELATED FUNCTION DOCUMENTATION
.SH "bool operator!= ( const QSize & s1, const QSize & s2 )"
-Returns TRUE if \fIs1\fR and \fIs2\fR are different; otherwise returns FALSE.
+Returns true if \fIs1\fR and \fIs2\fR are different; otherwise returns false.
.SH "const QSize operator* ( const QSize & s, int c )"
Multiplies \fIs\fR by \fIc\fR and returns the result.
.SH "const QSize operator* ( int c, const QSize & s )"
@@ -338,7 +338,7 @@ Writes the size \fIsz\fR to the stream \fIs\fR and returns a reference to the st
.PP
See also Format of the QDataStream operators.
.SH "bool operator== ( const QSize & s1, const QSize & s2 )"
-Returns TRUE if \fIs1\fR and \fIs2\fR are equal; otherwise returns FALSE.
+Returns true if \fIs1\fR and \fIs2\fR are equal; otherwise returns false.
.SH "QDataStream & operator>> ( QDataStream & s, QSize & sz )"
Reads the size from the stream \fIs\fR into size \fIsz\fR and returns a reference to the stream.
.PP