diff options
Diffstat (limited to 'examples/dummyresource/resourcefactory.cpp')
-rw-r--r-- | examples/dummyresource/resourcefactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/dummyresource/resourcefactory.cpp b/examples/dummyresource/resourcefactory.cpp index 0f7463f..221e20d 100644 --- a/examples/dummyresource/resourcefactory.cpp +++ b/examples/dummyresource/resourcefactory.cpp | |||
@@ -113,7 +113,7 @@ class DummySynchronizer : public Sink::Synchronizer { | |||
113 | KAsync::Job<void> synchronizeWithSource() Q_DECL_OVERRIDE | 113 | KAsync::Job<void> synchronizeWithSource() Q_DECL_OVERRIDE |
114 | { | 114 | { |
115 | SinkLog() << " Synchronizing with the source"; | 115 | SinkLog() << " Synchronizing with the source"; |
116 | return KAsync::start<void>([this]() { | 116 | return KAsync::syncStart<void>([this]() { |
117 | synchronize(ENTITY_TYPE_EVENT, DummyStore::instance().events(), [this](const QByteArray &ridBuffer, const QMap<QString, QVariant> &data) { | 117 | synchronize(ENTITY_TYPE_EVENT, DummyStore::instance().events(), [this](const QByteArray &ridBuffer, const QMap<QString, QVariant> &data) { |
118 | return createEvent(ridBuffer, data); | 118 | return createEvent(ridBuffer, data); |
119 | }); | 119 | }); |