diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-02-24 11:37:49 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-02-24 04:56:49 -0800 |
commit | 6570597f5bcb4c29eb3a63e5fae8d08fb4e76ea8 (patch) | |
tree | 93cc345a1d00d4ac7532b4eee76120f69cdbf8d7 /qt-models | |
parent | ef26a8e02fac99d4bda4c600646925dc09a0ca44 (diff) | |
download | subsurface-6570597f5bcb4c29eb3a63e5fae8d08fb4e76ea8.tar.gz |
CylinderModel: remove unnecessary "Is used" header
This header is a rebase artifact and introduces a pointless
column in the cylinder tables. It was erroneously introduced
in 6622f42aab937e72cc11cb5512012394aa687767.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models')
-rw-r--r-- | qt-models/cylindermodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/cylindermodel.cpp b/qt-models/cylindermodel.cpp index 1dbbc0653..4f5a4ab77 100644 --- a/qt-models/cylindermodel.cpp +++ b/qt-models/cylindermodel.cpp @@ -16,7 +16,7 @@ CylindersModel::CylindersModel(QObject *parent) : { // enum {REMOVE, TYPE, SIZE, WORKINGPRESS, START, END, O2, HE, DEPTH, MOD, MND, USE, IS_USED}; setHeaderDataStrings(QStringList() << "" << tr("Type") << tr("Size") << tr("Work press.") << tr("Start press.") << tr("End press.") << tr("O₂%") << tr("He%") - << tr("Deco switch at") <<tr("Bot. MOD") <<tr("MND") << tr("Use") << "Is used"); + << tr("Deco switch at") <<tr("Bot. MOD") <<tr("MND") << tr("Use")); connect(&diveListNotifier, &DiveListNotifier::cylindersReset, this, &CylindersModel::cylindersReset); } |