summaryrefslogtreecommitdiffstats
path: root/common/synchronizer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/synchronizer.cpp')
-rw-r--r--common/synchronizer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/synchronizer.cpp b/common/synchronizer.cpp
index f7dd816..11c7caf 100644
--- a/common/synchronizer.cpp
+++ b/common/synchronizer.cpp
@@ -22,7 +22,7 @@
22#include "definitions.h" 22#include "definitions.h"
23#include "commands.h" 23#include "commands.h"
24#include "bufferutils.h" 24#include "bufferutils.h"
25#include "remoteidmap.h" 25#include "synchronizerstore.h"
26#include "datastorequery.h" 26#include "datastorequery.h"
27#include "createentity_generated.h" 27#include "createentity_generated.h"
28#include "modifyentity_generated.h" 28#include "modifyentity_generated.h"
@@ -66,10 +66,10 @@ Storage::EntityStore &Synchronizer::store()
66 return *mEntityStore; 66 return *mEntityStore;
67} 67}
68 68
69RemoteIdMap &Synchronizer::syncStore() 69SynchronizerStore &Synchronizer::syncStore()
70{ 70{
71 if (!mSyncStore) { 71 if (!mSyncStore) {
72 mSyncStore = QSharedPointer<RemoteIdMap>::create(syncTransaction()); 72 mSyncStore = QSharedPointer<SynchronizerStore>::create(syncTransaction());
73 } 73 }
74 return *mSyncStore; 74 return *mSyncStore;
75} 75}