diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-04-11 07:54:22 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-04-11 09:56:35 -0700 |
commit | ccff22759612455ba5b4eb7232b6b8d50177ba4a (patch) | |
tree | 324c30ad166e02d8cfede8402bdd1e4d117702ab | |
parent | 18b7ee3875f8e469a456b61f78fa3ab85b7f5041 (diff) | |
download | subsurface-ccff22759612455ba5b4eb7232b6b8d50177ba4a.tar.gz |
Fix wrong function call for desktop build of Subsurface-mobile
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index d16ef1eab..6ea9b57f2 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -753,7 +753,7 @@ void QMLManager::changesNeedSaving() #elif defined(Q_OS_ANDROID) saveChangesLocal(); #else - saveChanges(); + saveChangesCloud(false); #endif } void QMLManager::saveChangesLocal() |