summaryrefslogtreecommitdiffstats
path: root/qt-models
diff options
context:
space:
mode:
authorGravatar jan Iversen <jan@casacondor.com>2019-12-15 08:30:19 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-26 08:37:25 -0800
commit63d676d9e4ad37ec622d044dc3072d788c30b8a8 (patch)
treed7079402e906a869741038afde262187f2887673 /qt-models
parent9c74ac23a59f26f32c5a908bb05ac8c5dcb655c5 (diff)
downloadsubsurface-63d676d9e4ad37ec622d044dc3072d788c30b8a8.tar.gz
qt-models: conditionally compile Commands:: in diveplannermodel.cpp
commands (undo) are not available for mobile, but diveplannermodel is needed add #ifndef MOBILE around Commands:: Signed-off-by: Jan Iversen <jan@casacondor.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models')
-rw-r--r--qt-models/diveplannermodel.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp
index eef8b99c3..629c6458d 100644
--- a/qt-models/diveplannermodel.cpp
+++ b/qt-models/diveplannermodel.cpp
@@ -7,7 +7,9 @@
#include "core/device.h"
#include "core/qthelper.h"
#include "core/settings/qPrefDivePlanner.h"
+#ifndef SUBSURFACE_MOBILE
#include "commands/command.h"
+#endif // SUBSURFACE_MOBILE
#include "core/gettextfromc.h"
#include "core/deco.h"
#include <QApplication>
@@ -1169,14 +1171,20 @@ void DivePlannerPointsModel::createPlan(bool replanCopy)
if (!current_dive || displayed_dive.id != current_dive->id) {
// we were planning a new dive, not re-planning an existing one
displayed_dive.divetrip = nullptr; // Should not be necessary, just in case!
+#ifndef SUBSURFACE_MOBILE
Command::addDive(&displayed_dive, autogroup, true);
+#endif // SUBSURFACE_MOBILE
} else if (replanCopy) {
// we were planning an old dive and save as a new dive
displayed_dive.id = dive_getUniqID(); // Things will break horribly if we create dives with the same id.
+#ifndef SUBSURFACE_MOBILE
Command::addDive(&displayed_dive, false, false);
+#endif // SUBSURFACE_MOBILE
} else {
// we were planning an old dive and rewrite the plan
+#ifndef SUBSURFACE_MOBILE
Command::replanDive(&displayed_dive);
+#endif // SUBSURFACE_MOBILE
}
// Remove and clean the diveplan, so we don't delete