aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/cloud/manager.cpp')
-rw-r--r--backends/cloud/manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/cloud/manager.cpp b/backends/cloud/manager.cpp
index 08340e9288..fc271485bf 100644
--- a/backends/cloud/manager.cpp
+++ b/backends/cloud/manager.cpp
@@ -46,9 +46,9 @@ Storage* Manager::getCurrentStorage() {
return _currentStorage;
}
-void Manager::syncSaves() {
+void Manager::syncSaves(Storage::OperationCallback callback) {
Storage* storage = getCurrentStorage();
- if (storage) storage->syncSaves();
+ if (storage) storage->syncSaves(callback);
}
} //end of namespace Cloud