diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-09-22 22:03:49 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-10-02 08:04:49 -0700 |
commit | a33f381dc6e71abc231992e95bfcf7b4d0cd145a (patch) | |
tree | badcfada60efe07b9d7110a5d9bd2eb1ecc2346d /qt-models/diveimportedmodel.h | |
parent | 5037fcdbdc867c542661b0b31debd8580777c30e (diff) | |
download | subsurface-a33f381dc6e71abc231992e95bfcf7b4d0cd145a.tar.gz |
Cleanup: remove DiveImportedModel::firstIndex
This index was never set to anything else than 0. Might as
well remove it.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/diveimportedmodel.h')
-rw-r--r-- | qt-models/diveimportedmodel.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/qt-models/diveimportedmodel.h b/qt-models/diveimportedmodel.h index 2124daef2..7b0f9d2ed 100644 --- a/qt-models/diveimportedmodel.h +++ b/qt-models/diveimportedmodel.h @@ -44,7 +44,6 @@ signals: void downloadFinished(); private: - int firstIndex; int lastIndex; std::vector<char> checkStates; // char instead of bool to avoid silly pessimization of std::vector. struct dive_table diveTable; |