diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-06-23 00:06:52 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-06-23 00:06:52 +0200 |
commit | 0246e68b6b3d730d3f9a7bcf11ee6ef1044df155 (patch) | |
tree | f8d71b0e615a08bbe20cdf698e4953fb8bdac202 /framework/src/domain/mime/mailtemplates.cpp | |
parent | 6b932d07685d0009bbee7ca8618bf688930fd82d (diff) | |
download | kube-0246e68b6b3d730d3f9a7bcf11ee6ef1044df155.tar.gz kube-0246e68b6b3d730d3f9a7bcf11ee6ef1044df155.zip |
Newline after "On %date you wrote:"
Diffstat (limited to 'framework/src/domain/mime/mailtemplates.cpp')
-rw-r--r-- | framework/src/domain/mime/mailtemplates.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/src/domain/mime/mailtemplates.cpp b/framework/src/domain/mime/mailtemplates.cpp index 2c9bcb69..b1e57742 100644 --- a/framework/src/domain/mime/mailtemplates.cpp +++ b/framework/src/domain/mime/mailtemplates.cpp | |||
@@ -787,7 +787,7 @@ void MailTemplates::reply(const KMime::Message::Ptr &origMsg, const std::functio | |||
787 | //On $datetime you wrote: | 787 | //On $datetime you wrote: |
788 | const QDateTime date = origMsg->date()->dateTime(); | 788 | const QDateTime date = origMsg->date()->dateTime(); |
789 | const auto dateTimeString = QString("%1 %2").arg(definedLocale.toString(date.date(), QLocale::LongFormat)).arg(definedLocale.toString(date.time(), QLocale::LongFormat)); | 789 | const auto dateTimeString = QString("%1 %2").arg(definedLocale.toString(date.date(), QLocale::LongFormat)).arg(definedLocale.toString(date.time(), QLocale::LongFormat)); |
790 | const auto onDateYouWroteLine = QString("On %1 you wrote:").arg(dateTimeString); | 790 | const auto onDateYouWroteLine = QString("On %1 you wrote:\n").arg(dateTimeString); |
791 | plainBody.append(onDateYouWroteLine); | 791 | plainBody.append(onDateYouWroteLine); |
792 | htmlBody.append(plainToHtml(onDateYouWroteLine)); | 792 | htmlBody.append(plainToHtml(onDateYouWroteLine)); |
793 | 793 | ||