summaryrefslogtreecommitdiffstats
path: root/backend-shared/plannershared.cpp
diff options
context:
space:
mode:
authorGravatar jan Iversen <jan@casacondor.com>2019-12-23 13:15:07 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-26 08:39:58 -0800
commit5b9014aeb7d02d9db9677f81d20109ec67afa0c0 (patch)
treef9fab2aca44b4e0ee253edcf209835cec2992a08 /backend-shared/plannershared.cpp
parent316e56f4f7da21e22db867b69bd58504c1976699 (diff)
downloadsubsurface-5b9014aeb7d02d9db9677f81d20109ec67afa0c0.tar.gz
plannerShared: add variables from plannerModel with conversion
the variables are set through set functions in DivePlannerPointsModel, but read via getters from qPrefDivePlanner and converted Variables: min_switch_duration Signed-off-by: Jan Iversen <jan@casacondor.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'backend-shared/plannershared.cpp')
-rw-r--r--backend-shared/plannershared.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/backend-shared/plannershared.cpp b/backend-shared/plannershared.cpp
index d5b5156ab..24ba7aae9 100644
--- a/backend-shared/plannershared.cpp
+++ b/backend-shared/plannershared.cpp
@@ -160,3 +160,13 @@ void plannerShared::set_doo2breaks(bool value)
qPrefDivePlanner::set_doo2breaks(value);
DivePlannerPointsModel::instance()->emitDataChanged();
}
+
+int plannerShared::min_switch_duration()
+{
+ return qPrefDivePlanner::min_switch_duration() / 60;
+}
+void plannerShared::set_min_switch_duration(int value)
+{
+ // NO conversion, this is done in the planner model.
+ DivePlannerPointsModel::instance()->setMinSwitchDuration(value);
+}