diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-27 16:55:48 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-27 16:55:48 +0900 |
commit | 8f878546e0a859e78dfc2c6ff7f08507347a76ea (patch) | |
tree | f95c1e5a2f97a2e200be23cd5d6ffde91487bd1d /libtdepim/maillistdrag.h | |
parent | 625d3c38cd3a49d07b6e1f511fe06d0792440791 (diff) | |
download | tdepim-8f878546e0a859e78dfc2c6ff7f08507347a76ea.tar.gz tdepim-8f878546e0a859e78dfc2c6ff7f08507347a76ea.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libtdepim/maillistdrag.h')
-rw-r--r-- | libtdepim/maillistdrag.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libtdepim/maillistdrag.h b/libtdepim/maillistdrag.h index 1e9e9681..496d6fb7 100644 --- a/libtdepim/maillistdrag.h +++ b/libtdepim/maillistdrag.h @@ -111,20 +111,20 @@ public: /* The format for this drag - "x-kmail-drag/message-list" */ static const char* format(); - /* Returns TRUE if the information in e can be decoded into a TQString; - otherwsie returns FALSE */ + /* Returns true if the information in e can be decoded into a TQString; + otherwsie returns false */ static bool canDecode( TQMimeSource* e ); /* Attempts to decode the dropped information; - Returns TRUE if successful; otherwise return false */ + Returns true if successful; otherwise return false */ static bool decode( TQDropEvent* e, MailList& s ); /* Attempts to decode the serialNumbers of the dropped information; - Returns TRUE if successful; otherwise return false */ + Returns true if successful; otherwise return false */ static bool decode( TQDropEvent* e, TQByteArray& a ); /* Attempts to decode the encoded MailList; - Returns TRUE if successful; otherwise return false */ + Returns true if successful; otherwise return false */ static bool decode( TQByteArray& a, MailList& s ); private: |