summaryrefslogtreecommitdiffstats
path: root/common/pipeline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/pipeline.cpp')
-rw-r--r--common/pipeline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/pipeline.cpp b/common/pipeline.cpp
index 7cab8ec..f321cf5 100644
--- a/common/pipeline.cpp
+++ b/common/pipeline.cpp
@@ -288,7 +288,7 @@ void PipelineState::step()
288 //TODO skip step if already processed 288 //TODO skip step if already processed
289 //FIXME error handling if no result is found 289 //FIXME error handling if no result is found
290 auto preprocessor = d->filterIt.next(); 290 auto preprocessor = d->filterIt.next();
291 d->pipeline->storage().scan(d->key.toStdString(), [this, preprocessor](void *keyValue, int keySize, void *dataValue, int dataSize) -> bool { 291 d->pipeline->storage().scan(d->key, [this, preprocessor](void *keyValue, int keySize, void *dataValue, int dataSize) -> bool {
292 auto entity = Akonadi2::GetEntity(dataValue); 292 auto entity = Akonadi2::GetEntity(dataValue);
293 preprocessor->process(*this, *entity); 293 preprocessor->process(*this, *entity);
294 return false; 294 return false;