diff options
Diffstat (limited to 'common/facade.h')
-rw-r--r-- | common/facade.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/facade.h b/common/facade.h index ad79213..abd4113 100644 --- a/common/facade.h +++ b/common/facade.h | |||
@@ -330,7 +330,7 @@ protected: | |||
330 | resultProvider->clear(); | 330 | resultProvider->clear(); |
331 | auto resultCallback = std::bind(&Akonadi2::ResultProvider<typename DomainType::Ptr>::add, resultProvider, std::placeholders::_1); | 331 | auto resultCallback = std::bind(&Akonadi2::ResultProvider<typename DomainType::Ptr>::add, resultProvider, std::placeholders::_1); |
332 | while(resultSet.next([resultCallback](const Akonadi2::ApplicationDomain::ApplicationDomainType::Ptr &value) -> bool { | 332 | while(resultSet.next([resultCallback](const Akonadi2::ApplicationDomain::ApplicationDomainType::Ptr &value) -> bool { |
333 | resultCallback(Akonadi2::ApplicationDomain::ApplicationDomainType::getInMemoryRepresentation<DomainType>(value)); | 333 | resultCallback(Akonadi2::ApplicationDomain::ApplicationDomainType::getInMemoryRepresentation<DomainType>(*value)); |
334 | return true; | 334 | return true; |
335 | })){}; | 335 | })){}; |
336 | storage->abortTransaction(); | 336 | storage->abortTransaction(); |