summaryrefslogtreecommitdiffstats
path: root/qt-models
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2021-05-08 09:46:09 +0200
committerGravatar Robert C. Helling <helling@atdotde.de>2021-05-08 13:40:24 +0200
commit8b0db14f64c4f1f3e3438b35fcfcd94994459283 (patch)
treefe2eaad066cdf025654b117418a72964b7efa40d /qt-models
parentfd3ebf9b62c9d0f73a9dd3105bfe5a933f63aabb (diff)
downloadsubsurface-8b0db14f64c4f1f3e3438b35fcfcd94994459283.tar.gz
profile: remove DiveGFLineItem
This was replaced by the tissue map in 893bea700c98. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models')
-rw-r--r--qt-models/diveplotdatamodel.cpp4
-rw-r--r--qt-models/diveplotdatamodel.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/qt-models/diveplotdatamodel.cpp b/qt-models/diveplotdatamodel.cpp
index 38b99c45c..a7eabdf94 100644
--- a/qt-models/diveplotdatamodel.cpp
+++ b/qt-models/diveplotdatamodel.cpp
@@ -71,8 +71,6 @@ QVariant DivePlotDataModel::data(const QModelIndex &index, int role) const
return item.heartbeat;
case AMBPRESSURE:
return AMB_PERCENTAGE;
- case GFLINE:
- return item.gfline;
case INSTANT_MEANDEPTH:
return item.running_sum;
}
@@ -152,8 +150,6 @@ QVariant DivePlotDataModel::headerData(int section, Qt::Orientation orientation,
return tr("Ambient pressure");
case HEARTBEAT:
return tr("Heart rate");
- case GFLINE:
- return tr("Gradient factor");
case INSTANT_MEANDEPTH:
return tr("Mean depth @ s");
}
diff --git a/qt-models/diveplotdatamodel.h b/qt-models/diveplotdatamodel.h
index a1031988f..1661e40d6 100644
--- a/qt-models/diveplotdatamodel.h
+++ b/qt-models/diveplotdatamodel.h
@@ -68,7 +68,6 @@ public:
SCR_OC_PO2,
HEARTBEAT,
AMBPRESSURE,
- GFLINE,
INSTANT_MEANDEPTH,
COLUMNS
};