diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-02 05:52:54 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-02 05:52:54 +0000 |
commit | c9c698138b70d52536977098de50e7b5a15ee1c4 (patch) | |
tree | 9e96d077a315c9a991b9ffb4b92cf7292cc87f98 /korganizer/koagenda.cpp | |
parent | 7540ca9eb936b46c49dcc4930c3072285d2035bd (diff) | |
download | tdepim-c9c698138b70d52536977098de50e7b5a15ee1c4.tar.gz tdepim-c9c698138b70d52536977098de50e7b5a15ee1c4.zip |
Fixed irritating bug which prompted three times to send a notification on recurring meeting single incidence resize
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1170798 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korganizer/koagenda.cpp')
-rw-r--r-- | korganizer/koagenda.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/korganizer/koagenda.cpp b/korganizer/koagenda.cpp index 8329d161c..a2712f0a9 100644 --- a/korganizer/koagenda.cpp +++ b/korganizer/koagenda.cpp @@ -1126,6 +1126,9 @@ void KOAgenda::endItemAction() mChanger->changeIncidence( oldIncSaved, inc, wc, this ); + mActionItem->dissociateFromMultiItem(); + mActionItem->setIncidence( incToChange ); + // mActionItem does not exist any more, seeing as we just got done deleting it // (by deleting/replacing the original incidence it was created from through // user modification of said incidence) above! @@ -1144,9 +1147,6 @@ void KOAgenda::endItemAction() break; } } - - mActionItem->dissociateFromMultiItem(); - mActionItem->setIncidence( incToChange ); } } |