diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-18 08:07:58 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-18 08:07:58 +0000 |
commit | 740cad9fc10cc4e3683b619cbe06da24ef18f1b0 (patch) | |
tree | e5540379c2fe570b009ea5d99cdecbc13ee71ea4 /plugins | |
parent | 8f37a4f755113e7440ae985111d36985d500cc95 (diff) | |
download | tdepim-740cad9fc10cc4e3683b619cbe06da24ef18f1b0.tar.gz tdepim-740cad9fc10cc4e3683b619cbe06da24ef18f1b0.zip |
Attempt to fix incorrect meeting motices being sent when the first instance of a recurring meeting is deleted.
This may need more work depending on how the number of recurrences are handled
This should be more compatible with most CalDAV resources than the old way...
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1165076 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/kmail/bodypartformatter/text_calendar.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/kmail/bodypartformatter/text_calendar.cpp b/plugins/kmail/bodypartformatter/text_calendar.cpp index 29a00afe3..2ea1cfd52 100644 --- a/plugins/kmail/bodypartformatter/text_calendar.cpp +++ b/plugins/kmail/bodypartformatter/text_calendar.cpp @@ -336,9 +336,7 @@ class UrlHandler : public KMail::Interface::BodyPartURLHandler subject = i18n( "Forwarded: %1" ).arg( summary ); break; case DeclineCounter: - // ### string freeze - //subject = i18n( "Declined Counter Proposal: %1" ).arg( summary ); - subject = i18n( "Answer: %1" ).arg( summary ); + subject = i18n( "Declined Counter Proposal: %1" ).arg( summary ); break; } |