diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-26 11:44:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-30 14:26:34 +0900 |
commit | 6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch) | |
tree | 0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tqkeysequence.3qt | |
parent | ff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff) | |
download | tqt-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/tqkeysequence.3qt')
-rw-r--r-- | doc/man/man3/tqkeysequence.3qt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/tqkeysequence.3qt b/doc/man/man3/tqkeysequence.3qt index d2caaf05d..c88c70b9a 100644 --- a/doc/man/man3/tqkeysequence.3qt +++ b/doc/man/man3/tqkeysequence.3qt @@ -114,7 +114,7 @@ Destroys the key sequence. .SH "uint TQKeySequence::count () const" Returns the number of keys in the key sequence. The maximum is 4. .SH "bool TQKeySequence::isEmpty () const" -Returns TRUE if the key sequence is empty; otherwise returns FALSE. +Returns true if the key sequence is empty; otherwise returns false. .SH "TQt::SequenceMatch TQKeySequence::matches ( const TQKeySequence & seq ) const" Matches the sequence with \fIseq\fR. Returns TQt::Identical if successful, TQt::PartialMatch for matching but incomplete \fIseq\fR, and TQt::NoMatch if the sequences have nothing in common. Returns TQt::NoMatch if \fIseq\fR is shorter. .SH "TQKeySequence::operator TQString () const" @@ -126,11 +126,11 @@ On Mac OS X, the string returned resembles the sequence that is shown in the men .PP For backward compatibility: returns the first keycode as integer. If the key sequence is empty, 0 is returned. .SH "bool TQKeySequence::operator!= ( const TQKeySequence & keysequence ) const" -Returns TRUE if \fIkeysequence\fR is not equal to this key sequence; otherwise returns FALSE. +Returns true if \fIkeysequence\fR is not equal to this key sequence; otherwise returns false. .SH "TQKeySequence & TQKeySequence::operator= ( const TQKeySequence & keysequence )" Assignment operator. Assigns \fIkeysequence\fR to this object. .SH "bool TQKeySequence::operator== ( const TQKeySequence & keysequence ) const" -Returns TRUE if \fIkeysequence\fR is equal to this key sequence; otherwise returns FALSE. +Returns true if \fIkeysequence\fR is equal to this key sequence; otherwise returns false. .SH "int TQKeySequence::operator[] ( uint index ) const" Returns a reference to the element at position \fIindex\fR in the key sequence. This can only be used to read an element. .SH RELATED FUNCTION DOCUMENTATION |