diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-09-13 18:21:53 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-09-13 13:54:59 -0700 |
commit | fcdb48779b0e109942ad2261670c6fc9344e2da3 (patch) | |
tree | af8a9c2b1b8e58aa76e7951fe628a78adc6cb129 /core | |
parent | 34286f328ddcfd511a92731f6e57a79778e4add4 (diff) | |
download | subsurface-fcdb48779b0e109942ad2261670c6fc9344e2da3.tar.gz |
cleanup: remove unused declarations in class DiveComputerList
The functions matchDC() and matchModel() were never implemented.
Remove their declarations.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core')
-rw-r--r-- | core/divecomputer.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/divecomputer.h b/core/divecomputer.h index d1ea62b9b..c92d56558 100644 --- a/core/divecomputer.h +++ b/core/divecomputer.h @@ -24,8 +24,6 @@ public: const DiveComputerNode *getExact(const QString &m, uint32_t d); const DiveComputerNode *get(const QString &m); void addDC(QString m, uint32_t d, QString n = QString(), QString s = QString(), QString f = QString()); - DiveComputerNode matchDC(const QString &m, uint32_t d); - DiveComputerNode matchModel(const QString &m); // Keep the dive computers in a vector sorted by (model, deviceId) QVector<DiveComputerNode> dcs; |