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/tqtextdrag.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/tqtextdrag.3qt')
-rw-r--r-- | doc/man/man3/tqtextdrag.3qt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/tqtextdrag.3qt b/doc/man/man3/tqtextdrag.3qt index baa3d0001..0aeef6c49 100644 --- a/doc/man/man3/tqtextdrag.3qt +++ b/doc/man/man3/tqtextdrag.3qt @@ -61,13 +61,13 @@ Constructs a default text drag object. \fIdragSource\fR must be the drag source; .SH "TQTextDrag::~TQTextDrag ()" Destroys the text drag object and frees up all allocated resources. .SH "bool TQTextDrag::canDecode ( const TQMimeSource * e )\fC [static]\fR" -Returns TRUE if the information in \fIe\fR can be decoded into a TQString; otherwise returns FALSE. +Returns true if the information in \fIe\fR can be decoded into a TQString; otherwise returns false. .PP See also decode(). .PP Example: iconview/simple_dd/main.cpp. .SH "bool TQTextDrag::decode ( const TQMimeSource * e, TQString & str )\fC [static]\fR" -Attempts to decode the dropped information in \fIe\fR into \fIstr\fR. Returns TRUE if successful; otherwise returns FALSE. +Attempts to decode the dropped information in \fIe\fR into \fIstr\fR. Returns true if successful; otherwise returns false. .PP See also canDecode(). .PP @@ -75,7 +75,7 @@ Example: iconview/simple_dd/main.cpp. .SH "bool TQTextDrag::decode ( const TQMimeSource * e, TQString & str, TQCString & subtype )\fC [static]\fR" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP -Attempts to decode the dropped information in \fIe\fR into \fIstr\fR. Returns TRUE if successful; otherwise returns FALSE. If \fIsubtype\fR is null, any text subtype is accepted; otherwise only the specified \fIsubtype\fR is accepted. +Attempts to decode the dropped information in \fIe\fR into \fIstr\fR. Returns true if successful; otherwise returns false. If \fIsubtype\fR is null, any text subtype is accepted; otherwise only the specified \fIsubtype\fR is accepted. .PP See also canDecode(). .SH "void TQTextDrag::setSubtype ( const TQCString & st )\fC [virtual]\fR" |