summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqtranslatormessage.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/tqtranslatormessage.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/tqtranslatormessage.3qt')
-rw-r--r--doc/man/man3/tqtranslatormessage.3qt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/man/man3/tqtranslatormessage.3qt b/doc/man/man3/tqtranslatormessage.3qt
index 80eb19e7e..f434d38f7 100644
--- a/doc/man/man3/tqtranslatormessage.3qt
+++ b/doc/man/man3/tqtranslatormessage.3qt
@@ -50,7 +50,7 @@ QTranslatorMessage \- Translator message and its properties
.BI "enum \fBPrefix\fR { NoPrefix, Hash, HashContext, HashContextSourceText, HashContextSourceTextComment }"
.br
.ti -1c
-.BI "void \fBwrite\fR ( QDataStream & stream, bool strip = FALSE, Prefix prefix = HashContextSourceTextComment ) const"
+.BI "void \fBwrite\fR ( QDataStream & stream, bool strip = false, Prefix prefix = HashContextSourceTextComment ) const"
.br
.ti -1c
.BI "Prefix \fBcommonPrefix\fR ( const QTranslatorMessage & m ) const"
@@ -129,19 +129,19 @@ Returns the hash value used internally to represent the lookup key. This value i
.PP
The hashing function is unspecified, but it will remain unchanged in future versions of Qt.
.SH "bool QTranslatorMessage::operator!= ( const QTranslatorMessage & m ) const"
-Returns TRUE if the extended key of this object is different from that of \fIm\fR; otherwise returns FALSE.
+Returns true if the extended key of this object is different from that of \fIm\fR; otherwise returns false.
.SH "bool QTranslatorMessage::operator< ( const QTranslatorMessage & m ) const"
-Returns TRUE if the extended key of this object is lexicographically before than that of \fIm\fR; otherwise returns FALSE.
+Returns true if the extended key of this object is lexicographically before than that of \fIm\fR; otherwise returns false.
.SH "bool QTranslatorMessage::operator<= ( const QTranslatorMessage & m ) const"
-Returns TRUE if the extended key of this object is lexicographically before that of \fIm\fR or if they are equal; otherwise returns FALSE.
+Returns true if the extended key of this object is lexicographically before that of \fIm\fR or if they are equal; otherwise returns false.
.SH "QTranslatorMessage & QTranslatorMessage::operator= ( const QTranslatorMessage & m )"
Assigns message \fIm\fR to this translator message and returns a reference to this translator message.
.SH "bool QTranslatorMessage::operator== ( const QTranslatorMessage & m ) const"
-Returns TRUE if the extended key of this object is equal to that of \fIm\fR; otherwise returns FALSE.
+Returns true if the extended key of this object is equal to that of \fIm\fR; otherwise returns false.
.SH "bool QTranslatorMessage::operator> ( const QTranslatorMessage & m ) const"
-Returns TRUE if the extended key of this object is lexicographically after that of \fIm\fR; otherwise returns FALSE.
+Returns true if the extended key of this object is lexicographically after that of \fIm\fR; otherwise returns false.
.SH "bool QTranslatorMessage::operator>= ( const QTranslatorMessage & m ) const"
-Returns TRUE if the extended key of this object is lexicographically after that of \fIm\fR or if they are equal; otherwise returns FALSE.
+Returns true if the extended key of this object is lexicographically after that of \fIm\fR or if they are equal; otherwise returns false.
.SH "void QTranslatorMessage::setTranslation ( const TQString & translation )"
Sets the translation of the source text to \fItranslation\fR.
.PP
@@ -154,8 +154,8 @@ Returns the source text of this message (e.g. "&Save").
Returns the translation of the source text (e.g., "&Sauvegarder").
.PP
See also setTranslation().
-.SH "void QTranslatorMessage::write ( QDataStream & stream, bool strip = FALSE, Prefix prefix = HashContextSourceTextComment ) const"
-Writes this translator message to the \fIstream\fR. If \fIstrip\fR is FALSE (the default), all the information in the message is written. If \fIstrip\fR is TRUE, only the part of the extended key specified by \fIprefix\fR is written with the translation (HashContextSourceTextComment by default).
+.SH "void QTranslatorMessage::write ( QDataStream & stream, bool strip = false, Prefix prefix = HashContextSourceTextComment ) const"
+Writes this translator message to the \fIstream\fR. If \fIstrip\fR is false (the default), all the information in the message is written. If \fIstrip\fR is true, only the part of the extended key specified by \fIprefix\fR is written with the translation (HashContextSourceTextComment by default).
.PP
See also commonPrefix().