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-29 22:58:05 +0900 |
commit | a88d4d648a4ae2d7d7abd23916b49b41c1a867f3 (patch) | |
tree | 73aacc657e135ab179010d102fdbd7a0a9edc40d /libtdepim/maillistdrag.h | |
parent | 409b67ac0559a06dc58da81fc90f0ba959d6068c (diff) | |
download | tdepim-a88d4d648a4ae2d7d7abd23916b49b41c1a867f3.tar.gz tdepim-a88d4d648a4ae2d7d7abd23916b49b41c1a867f3.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 8f878546e0a859e78dfc2c6ff7f08507347a76ea)
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: |