summaryrefslogtreecommitdiffstats
path: root/subsurface-core/subsurface-qt/DiveObjectHelper.cpp
diff options
context:
space:
mode:
authorGravatar Joakim Bygdell <j.bygdell@gmail.com>2016-02-13 18:34:29 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-02-13 10:03:56 -0800
commita01bcd82aa1c789ff87f58f5e117f9fadb7f8e32 (patch)
tree89423d54fc0ab4a46137014d8dec0b5683737f86 /subsurface-core/subsurface-qt/DiveObjectHelper.cpp
parent6252d0cd3bda32256d284aec09230c9bf1f8291b (diff)
downloadsubsurface-a01bcd82aa1c789ff87f58f5e117f9fadb7f8e32.tar.gz
Add helper function to retrieve first gas
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-core/subsurface-qt/DiveObjectHelper.cpp')
-rw-r--r--subsurface-core/subsurface-qt/DiveObjectHelper.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/subsurface-core/subsurface-qt/DiveObjectHelper.cpp b/subsurface-core/subsurface-qt/DiveObjectHelper.cpp
index 8a44c0ec5..38ffffb67 100644
--- a/subsurface-core/subsurface-qt/DiveObjectHelper.cpp
+++ b/subsurface-core/subsurface-qt/DiveObjectHelper.cpp
@@ -292,3 +292,10 @@ QString DiveObjectHelper::endPressure() const
QString endPressure = getPressures(m_dive, END_PRESSURE);
return endPressure;
}
+
+QString DiveObjectHelper::firstGas() const
+{
+ QString gas;
+ gas = get_gas_string(m_dive->cylinder[0].gasmix);
+ return gas;
+}