summaryrefslogtreecommitdiffstats
path: root/qt-models/diveplannermodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models/diveplannermodel.cpp')
-rw-r--r--qt-models/diveplannermodel.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp
index 31c98bac7..49e977c63 100644
--- a/qt-models/diveplannermodel.cpp
+++ b/qt-models/diveplannermodel.cpp
@@ -177,26 +177,6 @@ bool DivePlannerPointsModel::updateMaxDepth()
return (displayed_dive.maxdepth.mm != prevMaxDepth);
}
-QStringList &DivePlannerPointsModel::getGasList()
-{
- static QStringList list;
- list.clear();
- for (int i = 0; i < MAX_CYLINDERS; i++) {
- cylinder_t *cyl = &displayed_dive.cylinder[i];
- if (cylinder_nodata(cyl))
- break;
- /* Check if we have the same gasmix two or more times
- * If yes return more verbose string */
- int same_gas = same_gasmix_cylinder(cyl, i, &displayed_dive, true);
- if (same_gas == -1)
- list.push_back(get_gas_string(cyl->gasmix));
- else
- list.push_back(get_gas_string(cyl->gasmix) + QString(" (%1 %2 ").arg(tr("cyl.")).arg(i + 1) +
- cyl->type.description + ")");
- }
- return list;
-}
-
void DivePlannerPointsModel::removeDeco()
{
bool oldrec = setRecalc(false);