diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2016-08-29 21:35:06 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-09-04 07:36:43 -0700 |
commit | 4e0200863b876d3dab750711bfe1c8facba94f55 (patch) | |
tree | 3274c638045ca1c8dabff2d60e8ef2a2731a68db /core/subsurface-qt | |
parent | 674d8331f5c15a8c3095afd1deca2b087fd82464 (diff) | |
download | subsurface-4e0200863b876d3dab750711bfe1c8facba94f55.tar.gz |
Remove hacks regarding multiple gasmixes and cylinders
Enabling cylinder edit in Subsurface-mobile our previous hacks
regarding multiple cylinders and gasmixes must be removed.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/subsurface-qt')
-rw-r--r-- | core/subsurface-qt/DiveObjectHelper.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/core/subsurface-qt/DiveObjectHelper.cpp b/core/subsurface-qt/DiveObjectHelper.cpp index 87fae7c06..ab95b0c57 100644 --- a/core/subsurface-qt/DiveObjectHelper.cpp +++ b/core/subsurface-qt/DiveObjectHelper.cpp @@ -373,13 +373,7 @@ QString DiveObjectHelper::sumWeight() const QString DiveObjectHelper::getCylinder() const { - QString getCylinder; - if (is_cylinder_used(m_dive, 1)){ - getCylinder = QObject::tr("Multiple"); - } - else { - getCylinder = m_dive->cylinder[0].type.description; - } + QString getCylinder = m_dive->cylinder[0].type.description; return getCylinder; } |