summaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/diveplotdatamodel.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2014-01-23 18:03:28 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-01-23 21:11:15 -0800
commitb5e8ef160aa2320f4d2af51e68023580647da252 (patch)
tree6746ea3f9284c89c4a922d57a8e49f8ed6bdc700 /qt-ui/profile/diveplotdatamodel.cpp
parent1cae362c16ae94a98f4d00e19e1ffb591ecc5761 (diff)
downloadsubsurface-b5e8ef160aa2320f4d2af51e68023580647da252.tar.gz
Added the Po2 Partial Pressure Graph.
Important to note that no Partial Pressure Graph handles settings yet. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/diveplotdatamodel.cpp')
-rw-r--r--qt-ui/profile/diveplotdatamodel.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/profile/diveplotdatamodel.cpp b/qt-ui/profile/diveplotdatamodel.cpp
index 598391bc5..bf4425abc 100644
--- a/qt-ui/profile/diveplotdatamodel.cpp
+++ b/qt-ui/profile/diveplotdatamodel.cpp
@@ -38,6 +38,7 @@ QVariant DivePlotDataModel::data(const QModelIndex& index, int role) const
case SAC: return item.sac;
case PN2: return item.pn2;
case PHE: return item.phe;
+ case PO2: return item.po2;
}
}
@@ -85,6 +86,7 @@ QVariant DivePlotDataModel::headerData(int section, Qt::Orientation orientation,
case SAC: return tr("SAC");
case PN2: return tr("PN2");
case PHE: return tr("PHE");
+ case PO2: return tr("PO2");
}
if (role == Qt::DisplayRole && section >= TISSUE_1 && section <= TISSUE_16){
return QString("Ceiling: %1").arg(section - TISSUE_1);