summaryrefslogtreecommitdiffstats
path: root/kmail/objecttreeparser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/objecttreeparser.cpp')
-rw-r--r--kmail/objecttreeparser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/objecttreeparser.cpp b/kmail/objecttreeparser.cpp
index 3d0593cc..19886f8c 100644
--- a/kmail/objecttreeparser.cpp
+++ b/kmail/objecttreeparser.cpp
@@ -609,7 +609,7 @@ namespace KMail {
if ( key.numUserIDs() > 0 && key.userID( 0 ).id() )
messagePart.signer = Kleo::DN( key.userID( 0 ).id() ).prettyDN();
for ( uint iMail = 0; iMail < key.numUserIDs(); ++iMail ) {
- // The following if /should/ always result in TRUE but we
+ // The following if /should/ always result in true but we
// won't trust implicitely the plugin that gave us these data.
if ( key.userID( iMail ).email() ) {
TQString email = TQString::fromUtf8( key.userID( iMail ).email() );
@@ -2982,7 +2982,7 @@ TQString ObjectTreeParser::quotedHTML( const TQString& s, bool decorate )
TQString line;
/* search next occurrence of '\n' */
- pos = s.find('\n', beg, FALSE);
+ pos = s.find('\n', beg, false);
if (pos == (unsigned int)(-1))
pos = length;