diff options
author | Tim Wootton <tim@tee-jay.demon.co.uk> | 2013-10-12 22:27:35 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-10-13 11:30:56 -0700 |
commit | a014fb10990d09bb51eccb94f107cf2aebf79d66 (patch) | |
tree | 04798b63816ed766dc9e39746660ada889cc2695 /qt-ui/models.cpp | |
parent | 5b72348eff0f87cb093a6b31a65aacd2ab08778b (diff) | |
download | subsurface-a014fb10990d09bb51eccb94f107cf2aebf79d66.tar.gz |
Adds missing "EndPress" column header for cylinder table
The end pressure was appearing in the column headed "O2"
Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/models.cpp')
-rw-r--r-- | qt-ui/models.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp index e70bece19..3d1936eea 100644 --- a/qt-ui/models.cpp +++ b/qt-ui/models.cpp @@ -59,7 +59,7 @@ void CleanerTableModel::setHeaderDataStrings(const QStringList& newHeaders) CylindersModel::CylindersModel(QObject* parent): current(0), rows(0) { // enum{REMOVE, TYPE, SIZE, WORKINGPRESS, START, END, O2, HE,}; - setHeaderDataStrings( QStringList() << "" << tr("Type") << tr("Size") << tr("WorkPress") << tr("StartPress") << tr("O2%") << tr("HE")); + setHeaderDataStrings( QStringList() << "" << tr("Type") << tr("Size") << tr("WorkPress") << tr("StartPress") << tr("EndPress") << tr("O2%") << tr("HE")); } static QVariant percent_string(fraction_t fraction) |