summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqtranslatormessage.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-26 11:44:58 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-30 14:26:34 +0900
commit6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch)
tree0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tqtranslatormessage.3qt
parentff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff)
downloadtqt-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/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 db1067515..46b793126 100644
--- a/doc/man/man3/tqtranslatormessage.3qt
+++ b/doc/man/man3/tqtranslatormessage.3qt
@@ -50,7 +50,7 @@ TQTranslatorMessage \- Translator message and its properties
.BI "enum \fBPrefix\fR { NoPrefix, Hash, HashContext, HashContextSourceText, HashContextSourceTextComment }"
.br
.ti -1c
-.BI "void \fBwrite\fR ( TQDataStream & stream, bool strip = FALSE, Prefix prefix = HashContextSourceTextComment ) const"
+.BI "void \fBwrite\fR ( TQDataStream & stream, bool strip = false, Prefix prefix = HashContextSourceTextComment ) const"
.br
.ti -1c
.BI "Prefix \fBcommonPrefix\fR ( const TQTranslatorMessage & 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 TQTranslatorMessage::operator!= ( const TQTranslatorMessage & 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 TQTranslatorMessage::operator< ( const TQTranslatorMessage & 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 TQTranslatorMessage::operator<= ( const TQTranslatorMessage & 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 "TQTranslatorMessage & TQTranslatorMessage::operator= ( const TQTranslatorMessage & m )"
Assigns message \fIm\fR to this translator message and returns a reference to this translator message.
.SH "bool TQTranslatorMessage::operator== ( const TQTranslatorMessage & 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 TQTranslatorMessage::operator> ( const TQTranslatorMessage & 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 TQTranslatorMessage::operator>= ( const TQTranslatorMessage & 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 TQTranslatorMessage::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 TQTranslatorMessage::write ( TQDataStream & 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 TQTranslatorMessage::write ( TQDataStream & 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().