diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-12-20 16:02:38 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-12-20 16:02:38 +0100 |
commit | 1864024012213dc0a17c76e9755bf50a19944ec7 (patch) | |
tree | 06690c35c05c29deec30a3dd412d4043e2c956a3 /common/store.cpp | |
parent | 6625bb5a2145008ad47ae963e1546714b7342bf0 (diff) | |
download | sink-1864024012213dc0a17c76e9755bf50a19944ec7.tar.gz sink-1864024012213dc0a17c76e9755bf50a19944ec7.zip |
Report when we don't have any more to fetch.
... so we can use that information in fetchMore.
Diffstat (limited to 'common/store.cpp')
-rw-r--r-- | common/store.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/store.cpp b/common/store.cpp index dd00bfe..a70be05 100644 --- a/common/store.cpp +++ b/common/store.cpp | |||
@@ -162,7 +162,7 @@ QSharedPointer<QAbstractItemModel> Store::loadModel(Query query) | |||
162 | }); | 162 | }); |
163 | emitter->onRemoved([](const ApplicationDomain::SinkResource::Ptr &) { | 163 | emitter->onRemoved([](const ApplicationDomain::SinkResource::Ptr &) { |
164 | }); | 164 | }); |
165 | emitter->onInitialResultSetComplete([](const ApplicationDomain::SinkResource::Ptr &) { | 165 | emitter->onInitialResultSetComplete([](const ApplicationDomain::SinkResource::Ptr &, bool) { |
166 | }); | 166 | }); |
167 | emitter->onComplete([query, aggregatingEmitter]() { | 167 | emitter->onComplete([query, aggregatingEmitter]() { |
168 | SinkTrace() << "Resource query complete"; | 168 | SinkTrace() << "Resource query complete"; |