diff options
author | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-07 21:52:03 +0000 |
---|---|---|
committer | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-07 21:52:03 +0000 |
commit | 87e9213ec5e89eb135a483f7635ea3d0c663e891 (patch) | |
tree | 102f615eec745b55747a2d97997f72315630a76f /kmail/templateparser.cpp | |
parent | 42c6ef8e5041733f6eaed7a133802e63ee1c05e5 (diff) | |
download | tdepim-87e9213ec5e89eb135a483f7635ea3d0c663e891.tar.gz tdepim-87e9213ec5e89eb135a483f7635ea3d0c663e891.zip |
[kdepim] revert some accidental renamed classes/methods and strings (fix quote reply)
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1230817 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/templateparser.cpp')
-rw-r--r-- | kmail/templateparser.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmail/templateparser.cpp b/kmail/templateparser.cpp index 8e167f5fd..775d9a938 100644 --- a/kmail/templateparser.cpp +++ b/kmail/templateparser.cpp @@ -297,11 +297,11 @@ void TemplateParser::processWithTemplate( const TQString &tmpl ) tqarg( path ).tqarg(file.errorString() )); } - } else if ( cmd.startsWith( "TQUOTEPIPE=" ) ) { + } else if ( cmd.startsWith( "QUOTEPIPE=" ) ) { // pipe message body throw command and insert it as quotation kdDebug() << "Command: TQUOTEPIPE=" << endl; TQString q; - int len = parseQuotes( "TQUOTEPIPE=", cmd, q ); + int len = parseQuotes( "QUOTEPIPE=", cmd, q ); i += len; TQString pipe_cmd = q; if ( mOrigMsg ) { @@ -311,9 +311,9 @@ void TemplateParser::processWithTemplate( const TQString &tmpl ) body.append( quote ); } - } else if ( cmd.startsWith( "TQUOTE" ) ) { + } else if ( cmd.startsWith( "QUOTE" ) ) { kdDebug() << "Command: TQUOTE" << endl; - i += strlen( "TQUOTE" ); + i += strlen( "QUOTE" ); if ( mOrigMsg ) { TQString quote = mOrigMsg->asQuotedString( "", mQuoteString, messageText( true ), shouldStripSignature(), mAllowDecryption ); |