summaryrefslogtreecommitdiffstats
path: root/common/queryrunner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/queryrunner.cpp')
-rw-r--r--common/queryrunner.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/queryrunner.cpp b/common/queryrunner.cpp
index 1b142c8..cb3687f 100644
--- a/common/queryrunner.cpp
+++ b/common/queryrunner.cpp
@@ -87,7 +87,7 @@ QueryRunner<DomainType>::QueryRunner(const Sink::Query &query, const Sink::Resou
87 }, runAsync) 87 }, runAsync)
88 .then([this, parentId, query, parent, resultProvider, guardPtr](const ReplayResult &result) { 88 .then([this, parentId, query, parent, resultProvider, guardPtr](const ReplayResult &result) {
89 if (!guardPtr) { 89 if (!guardPtr) {
90 qWarning() << "The parent object is already gone"; 90 //Not an error, the query can vanish at any time.
91 return; 91 return;
92 } 92 }
93 mInitialQueryComplete = true; 93 mInitialQueryComplete = true;
@@ -134,7 +134,7 @@ QueryRunner<DomainType>::QueryRunner(const Sink::Query &query, const Sink::Resou
134 })) 134 }))
135 .then([query, this, resultProvider, guardPtr](const ReplayResult &newRevisionAndReplayedEntities) { 135 .then([query, this, resultProvider, guardPtr](const ReplayResult &newRevisionAndReplayedEntities) {
136 if (!guardPtr) { 136 if (!guardPtr) {
137 qWarning() << "The parent object is already gone"; 137 //Not an error, the query can vanish at any time.
138 return; 138 return;
139 } 139 }
140 mQueryInProgress = false; 140 mQueryInProgress = false;