diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-16 20:14:49 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-02-16 20:14:49 +0100 |
commit | 5374dcfd39d9a0ee5b493e93419018b734781c4a (patch) | |
tree | d3eb1c44b1fdabcf8f6df31bef6dd52749e71cb0 /common/store.cpp | |
parent | 6e700175cdaed0971c646fd1d2d814e0ec4d73ba (diff) | |
download | sink-5374dcfd39d9a0ee5b493e93419018b734781c4a.tar.gz sink-5374dcfd39d9a0ee5b493e93419018b734781c4a.zip |
Fixed multimodifications
Diffstat (limited to 'common/store.cpp')
-rw-r--r-- | common/store.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/store.cpp b/common/store.cpp index 6dd4fb3..9550d3e 100644 --- a/common/store.cpp +++ b/common/store.cpp | |||
@@ -198,7 +198,7 @@ KAsync::Job<void> Store::modify(const Query &query, const DomainType &domainObje | |||
198 | for (const auto &p : domainObject.changedProperties()) { | 198 | for (const auto &p : domainObject.changedProperties()) { |
199 | copy.setProperty(p, domainObject.getProperty(p)); | 199 | copy.setProperty(p, domainObject.getProperty(p)); |
200 | } | 200 | } |
201 | return modify(*entity); | 201 | return modify(copy); |
202 | }); | 202 | }); |
203 | } | 203 | } |
204 | 204 | ||