diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-16 20:17:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-16 20:17:18 +0000 |
commit | f4fae92b6768541e2952173c3d4b09040f95bf7e (patch) | |
tree | d8c5d93232235cd635f3310b4d95490df181ba2d /kmail/objecttreeparser.h | |
parent | 125c0a08265b75a133644d3b55f47e37c919f45d (diff) | |
download | tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.tar.gz tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.zip |
Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/objecttreeparser.h')
-rw-r--r-- | kmail/objecttreeparser.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/objecttreeparser.h b/kmail/objecttreeparser.h index ad980edaf..5cfe1d0e7 100644 --- a/kmail/objecttreeparser.h +++ b/kmail/objecttreeparser.h @@ -151,7 +151,7 @@ namespace KMail { mIncludeSignatures = include; } - // Controls whether Toltec invitations are displayed in their raw form or as a replacement text, + // Controls whether Toltec invitations are displayed in their raw form or as a tqreplacement text, // which is used in processToltecMail(). void setShowRawToltecMail( bool showRawToltecMail ) { mShowRawToltecMail = showRawToltecMail; } bool showRawToltecMail() const { return mShowRawToltecMail; } @@ -171,7 +171,7 @@ namespace KMail { /** Parse beginning at a given node and recursively parsing the children of that node and it's next sibling. */ // Function is called internally by "parseMsg(KMMessage* msg)" - // and it will be replaced once KMime is alive. + // and it will be tqreplaced once KMime is alive. void parseObjectTree( partNode * node ); private: @@ -193,7 +193,7 @@ namespace KMail { * Setting this to false is useful for encapsulated messages, as we * do not want the text in those to appear in the editor */ - // Function will be replaced once KMime is alive. + // Function will be tqreplaced once KMime is alive. void insertAndParseNewChildNode( partNode & node, const char * content, const char * cntDesc, @@ -252,11 +252,11 @@ namespace KMail { */ bool processToltecMail( partNode * node ); - /** Checks whether @p str contains external references. To be precise, - we only check whether @p str contains 'xxx="http[s]:' where xxx is + /** Checks whether @p str tqcontains external references. To be precise, + we only check whether @p str tqcontains 'xxx="http[s]:' where xxx is not href. Obfuscated external references are ignored on purpose. */ - static bool containsExternalReferences( const TQCString & str ); + static bool tqcontainsExternalReferences( const TQCString & str ); public:// (during refactoring) |