diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-11-28 23:37:33 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-11-28 23:37:33 +0100 |
commit | 73ad9440244579ba625df970aa280e162f6f1c86 (patch) | |
tree | aa0bd4a40ff61a789bce2536c36e37a54143d52e /common/synchronizer.cpp | |
parent | 2b9295f8d078081c9aecfe6047cb331ab0cd0129 (diff) | |
download | sink-73ad9440244579ba625df970aa280e162f6f1c86.tar.gz sink-73ad9440244579ba625df970aa280e162f6f1c86.zip |
Renamed RemoteIdMap to SynchronizerStore
Diffstat (limited to 'common/synchronizer.cpp')
-rw-r--r-- | common/synchronizer.cpp | 6 |
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 | ||
69 | RemoteIdMap &Synchronizer::syncStore() | 69 | SynchronizerStore &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 | } |