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 /kmail/kmfolderimap.h | |
| parent | 409b67ac0559a06dc58da81fc90f0ba959d6068c (diff) | |
| download | tdepim-a88d4d64.tar.gz tdepim-a88d4d64.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 'kmail/kmfolderimap.h')
| -rw-r--r-- | kmail/kmfolderimap.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmail/kmfolderimap.h b/kmail/kmfolderimap.h index 4113350a..db77f96a 100644 --- a/kmail/kmfolderimap.h +++ b/kmail/kmfolderimap.h @@ -125,8 +125,8 @@ public: KMAcctImap* account() const; /** Remove (first occurrence of) given message from the folder. */ - virtual void removeMsg(int i, bool quiet = FALSE); - virtual void removeMsg(const TQPtrList<KMMessage>& msgList, bool quiet = FALSE); + virtual void removeMsg(int i, bool quiet = false); + virtual void removeMsg(const TQPtrList<KMMessage>& msgList, bool quiet = false); virtual int rename( const TQString& newName, KMFolderDir *aParent = 0 ); @@ -152,12 +152,12 @@ public: /** * Retrieve all mails in a folder */ - void getFolder(bool force = FALSE); + void getFolder(bool force = false); /** * same as above but also checks for new mails */ - void getAndCheckFolder(bool force = FALSE); + void getAndCheckFolder(bool force = false); /** * Get the whole message @@ -380,7 +380,7 @@ public slots: * Convert IMAP flags to a message status * @param newMsg specifies whether unseen messages are new or unread */ - static void flagsToStatus(KMMsgBase *msg, int flags, bool newMsg = TRUE, int supportedFalgs = 31 ); + static void flagsToStatus(KMMsgBase *msg, int flags, bool newMsg = true, int supportedFalgs = 31 ); /** * Convert IMAP seen flag to a message status. |
