diff options
Diffstat (limited to 'core/subsurface-qt/DiveObjectHelper.cpp')
-rw-r--r-- | core/subsurface-qt/DiveObjectHelper.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/core/subsurface-qt/DiveObjectHelper.cpp b/core/subsurface-qt/DiveObjectHelper.cpp index 5ac144c07..23fa8a09f 100644 --- a/core/subsurface-qt/DiveObjectHelper.cpp +++ b/core/subsurface-qt/DiveObjectHelper.cpp @@ -417,9 +417,12 @@ QString DiveObjectHelper::endPressure() const return endPressure; } -QString DiveObjectHelper::firstGas() const +QStringList DiveObjectHelper::firstGas() const { - QString gas; - gas = get_gas_string(m_dive->cylinder[0].gasmix); + QStringList gas; + for (int i = 0; i < MAX_CYLINDERS; i++) { + if (is_cylinder_used(m_dive, i)) + gas << get_gas_string(m_dive->cylinder[i].gasmix); + } return gas; } |