summaryrefslogtreecommitdiffstats
path: root/core/subsurface-qt
diff options
context:
space:
mode:
authorGravatar Rick Walsh <rickmwalsh@gmail.com>2016-05-21 20:14:23 +1000
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-05-21 07:03:55 -0700
commit1e607ae98d2f57ebb8dab27ada29187d9bd2dffb (patch)
tree342754110e953b1d22e5a810ce7cfadac151ce57 /core/subsurface-qt
parent9b29173363861861949814191861fa46e255c349 (diff)
downloadsubsurface-1e607ae98d2f57ebb8dab27ada29187d9bd2dffb.tar.gz
fixup: Don't confuse EAD and END
The previous patch (Planner: add best mix EAD preference) used the term EAD (equivalent air depth) in variable names and strings, when it should have been END (equivalent narcotic depth). They're not the same thing and shouldn't be confused. Signed-off-by: Rick Walsh <rickmwalsh@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/subsurface-qt')
-rw-r--r--core/subsurface-qt/SettingsObjectWrapper.cpp12
-rw-r--r--core/subsurface-qt/SettingsObjectWrapper.h8
2 files changed, 10 insertions, 10 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)
diff --git a/core/subsurface-qt/SettingsObjectWrapper.h b/core/subsurface-qt/SettingsObjectWrapper.h
index b4b898a3d..3b19c9a32 100644
--- a/core/subsurface-qt/SettingsObjectWrapper.h
+++ b/core/subsurface-qt/SettingsObjectWrapper.h
@@ -327,7 +327,7 @@ class DivePlannerSettings : public QObject {
Q_PROPERTY(int descrate READ descrate WRITE setDescrate NOTIFY descrateChanged)
Q_PROPERTY(int bottompo2 READ bottompo2 WRITE setBottompo2 NOTIFY bottompo2Changed)
Q_PROPERTY(int decopo2 READ decopo2 WRITE setDecopo2 NOTIFY decopo2Changed)
- Q_PROPERTY(int bestmixead READ bestmixead WRITE setBestmixead NOTIFY bestmixeadChanged)
+ Q_PROPERTY(int bestmixend READ bestmixend WRITE setBestmixend NOTIFY bestmixendChanged)
Q_PROPERTY(int reserve_gas READ reserveGas WRITE setReserveGas NOTIFY reserveGasChanged)
Q_PROPERTY(int min_switch_duration READ minSwitchDuration WRITE setMinSwitchDuration NOTIFY minSwitchDurationChanged)
Q_PROPERTY(int bottomsac READ bottomSac WRITE setBottomSac NOTIFY bottomSacChanged)
@@ -353,7 +353,7 @@ public:
int descrate() const;
int bottompo2() const;
int decopo2() const;
- int bestmixead() const;
+ int bestmixend() const;
int reserveGas() const;
int minSwitchDuration() const;
int bottomSac() const;
@@ -378,7 +378,7 @@ public slots:
void setDescrate(int value);
void setBottompo2(int value);
void setDecopo2(int value);
- void setBestmixead(int value);
+ void setBestmixend(int value);
void setReserveGas(int value);
void setMinSwitchDuration(int value);
void setBottomSac(int value);
@@ -403,7 +403,7 @@ signals:
void descrateChanged(int value);
void bottompo2Changed(int value);
void decopo2Changed(int value);
- void bestmixeadChanged(int value);
+ void bestmixendChanged(int value);
void reserveGasChanged(int value);
void minSwitchDurationChanged(int value);
void bottomSacChanged(int value);