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/kmsender.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/kmsender.h')
| -rw-r--r-- | kmail/kmsender.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/kmsender.h b/kmail/kmsender.h index 955bab91..7e2cbf4e 100644 --- a/kmail/kmsender.h +++ b/kmail/kmsender.h @@ -66,10 +66,10 @@ protected: /** Send given message. The message is either queued or sent immediately. The default behaviour, as selected with setSendImmediate(), can be overwritten with the parameter - sendNow (by specifying TRUE or FALSE). + sendNow (by specifying true or false). The sender takes ownership of the given message on success, so DO NOT DELETE OR MODIFY the message further. - Returns TRUE on success. */ + Returns true on success. */ bool doSend(KMMessage* msg, short sendNow); /** Send queued messages, using the specified transport or the @@ -78,11 +78,11 @@ protected: bool doSendQueued( const TQString& transport ); private: - /** Returns TRUE if sending is in progress. */ + /** Returns true if sending is in progress. */ bool sending() const { return mSendInProgress; } public: - /** Shall messages be sent immediately (TRUE), or shall they be + /** Shall messages be sent immediately (true), or shall they be queued and sent later upon call of sendQueued() ? */ bool sendImmediate() const { return mSendImmediate; } void setSendImmediate(bool); @@ -139,8 +139,8 @@ private: void cleanup(); /** Test if all required settings are set. - Reports problems to user via dialogs and returns FALSE. - Returns TRUE if everything is Ok. */ + Reports problems to user via dialogs and returns false. + Returns true if everything is Ok. */ bool settingsOk() const; /** Parse protocol '://' (host port? | mailer) string and |
