diff options
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 ); |