summaryrefslogtreecommitdiffstats
path: root/common/pipeline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/pipeline.cpp')
-rw-r--r--common/pipeline.cpp17
1 files changed, 2 insertions, 15 deletions
diff --git a/common/pipeline.cpp b/common/pipeline.cpp
index b1c2c58..bb40a85 100644
--- a/common/pipeline.cpp
+++ b/common/pipeline.cpp
@@ -282,25 +282,12 @@ KAsync::Job<qint64> Pipeline::deletedEntity(void const *command, size_t size)
282 return KAsync::value(d->entityStore.maxRevision()); 282 return KAsync::value(d->entityStore.maxRevision());
283} 283}
284 284
285void Pipeline::cleanupRevision(qint64 revision) 285void Pipeline::cleanupRevisions(qint64 revision)
286{ 286{
287 d->entityStore.cleanupRevision(revision); 287 d->entityStore.cleanupRevisions(revision);
288 d->revisionChanged = true; 288 d->revisionChanged = true;
289} 289}
290 290
291qint64 Pipeline::cleanedUpRevision()
292{
293 /* return d->entityStore.cleanedUpRevision(); */
294 /* return DataStore::cleanedUpRevision(d->transaction); */
295 //FIXME Just move the whole cleanup revision iteration into the entitystore
296 return 0;
297}
298
299qint64 Pipeline::revision()
300{
301 //FIXME Just move the whole cleanup revision iteration into the entitystore
302 return 0;
303}
304 291
305class Preprocessor::Private { 292class Preprocessor::Private {
306public: 293public: