summaryrefslogtreecommitdiffstats
path: root/core/subsurface-qt/SettingsObjectWrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/subsurface-qt/SettingsObjectWrapper.cpp')
-rw-r--r--core/subsurface-qt/SettingsObjectWrapper.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/core/subsurface-qt/SettingsObjectWrapper.cpp b/core/subsurface-qt/SettingsObjectWrapper.cpp
index eeb4c96c2..b8865e256 100644
--- a/core/subsurface-qt/SettingsObjectWrapper.cpp
+++ b/core/subsurface-qt/SettingsObjectWrapper.cpp
@@ -915,9 +915,9 @@ int DivePlannerSettings::decopo2() const
return prefs.decopo2;
}
-int DivePlannerSettings::bestmixead() const
+int DivePlannerSettings::bestmixend() const
{
- return prefs.bestmixead;
+ return prefs.bestmixend;
}
int DivePlannerSettings::reserveGas() const
@@ -1094,13 +1094,13 @@ void DivePlannerSettings::setDecopo2(int value)
emit decopo2Changed(value);
}
-void DivePlannerSettings::setBestmixead(int value)
+void DivePlannerSettings::setBestmixend(int value)
{
QSettings s;
s.beginGroup(group);
- s.setValue("bestmixead", value);
- prefs.bestmixead = value;
- emit bestmixeadChanged(value);
+ s.setValue("bestmixend", value);
+ prefs.bestmixend = value;
+ emit bestmixendChanged(value);
}
void DivePlannerSettings::setReserveGas(int value)