summaryrefslogtreecommitdiffstats
path: root/common/pipeline.cpp
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2015-03-30 23:38:45 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2015-03-31 11:11:08 +0200
commit42f32ea5865c95028c577000e15e8a8631d16e74 (patch)
tree2d9e8a77ccccf088a8807f35f87e4264163d6cdd /common/pipeline.cpp
parent34851314d39307f22df01a4b711e6fd3c5618e23 (diff)
downloadsink-42f32ea5865c95028c577000e15e8a8631d16e74.tar.gz
sink-42f32ea5865c95028c577000e15e8a8631d16e74.zip
Storage: API cleanup/use QByteArray instead of std::string
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;