summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/synchronizer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/synchronizer.h b/common/synchronizer.h
index bd03ba3..590b939 100644
--- a/common/synchronizer.h
+++ b/common/synchronizer.h
@@ -123,6 +123,7 @@ protected:
123 123
124 virtual KAsync::Job<void> synchronizeWithSource(const Sink::QueryBase &query) = 0; 124 virtual KAsync::Job<void> synchronizeWithSource(const Sink::QueryBase &query) = 0;
125 125
126public:
126 struct SyncRequest { 127 struct SyncRequest {
127 enum RequestType { 128 enum RequestType {
128 Synchronization, 129 Synchronization,
@@ -172,6 +173,7 @@ protected:
172 QByteArrayList applicableEntities; 173 QByteArrayList applicableEntities;
173 }; 174 };
174 175
176protected:
175 /** 177 /**
176 * This allows the synchronizer to turn a single query into multiple synchronization requests. 178 * This allows the synchronizer to turn a single query into multiple synchronization requests.
177 * 179 *
@@ -203,7 +205,6 @@ protected:
203 */ 205 */
204 virtual void reportProgress(int progress, int total, const QByteArrayList &entities = {}) Q_DECL_OVERRIDE; 206 virtual void reportProgress(int progress, int total, const QByteArrayList &entities = {}) Q_DECL_OVERRIDE;
205 207
206protected:
207 Sink::Log::Context mLogCtx; 208 Sink::Log::Context mLogCtx;
208 209
209private: 210private: