summaryrefslogtreecommitdiffstats
path: root/common/pipeline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/pipeline.cpp')
-rw-r--r--common/pipeline.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/pipeline.cpp b/common/pipeline.cpp
index 8d00480..18b6d51 100644
--- a/common/pipeline.cpp
+++ b/common/pipeline.cpp
@@ -189,6 +189,7 @@ public:
189 Pipeline *pipeline; 189 Pipeline *pipeline;
190 Pipeline::Type type; 190 Pipeline::Type type;
191 QByteArray key; 191 QByteArray key;
192 Akonadi2::Entity *entity;
192 QVectorIterator<Preprocessor *> filterIt; 193 QVectorIterator<Preprocessor *> filterIt;
193 bool idle; 194 bool idle;
194}; 195};
@@ -239,6 +240,11 @@ Pipeline::Type PipelineState::type() const
239 return d->type; 240 return d->type;
240} 241}
241 242
243const Akonadi2::Entity &PipelineState::entity() const
244{
245 return *d->entity;
246}
247
242void PipelineState::step() 248void PipelineState::step()
243{ 249{
244 if (!d->pipeline) { 250 if (!d->pipeline) {