diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-01-29 14:00:19 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-29 14:00:19 -0800 |
commit | cd992bd14a292ae7117b40e1c1d6d99660d2e2da (patch) | |
tree | f952529a8dbf021912ed33ddc4a1cb4ca163902e /divecomputer.h | |
parent | 4e40872fc0ec5df8fd24e71e142f79ce5333307e (diff) | |
download | subsurface-cd992bd14a292ae7117b40e1c1d6d99660d2e2da.tar.gz |
Don't reimplement the clear() method
Much easier and clearer.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'divecomputer.h')
-rw-r--r-- | divecomputer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/divecomputer.h b/divecomputer.h index 54752abf7..81399c47d 100644 --- a/divecomputer.h +++ b/divecomputer.h @@ -26,7 +26,6 @@ public: const DiveComputerNode *getExact(const QString &m, uint32_t d); const DiveComputerNode *get(const QString &m); void addDC(const QString &m, uint32_t d, const QString &n = QString(), const QString &s = QString(), const QString &f = QString()); - void rmDC(const QString &m, uint32_t d); DiveComputerNode matchDC(const QString &m, uint32_t d); DiveComputerNode matchModel(const QString &m); QMultiMap<QString, DiveComputerNode> dcMap; @@ -35,4 +34,4 @@ public: extern DiveComputerList dcList; -#endif
\ No newline at end of file +#endif |