diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-10-05 10:12:12 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-10-16 14:26:37 -0700 |
commit | 4a50badb57efd7725fa540ea7bb13f1e334cb83c (patch) | |
tree | 9e3a9214f4d5510dca8e212bbaa2e7f6e7b3bf5e /qt-models/divecomputermodel.h | |
parent | fd8bd9d5c717799313c4decaa85796ba68449f8a (diff) | |
download | subsurface-4a50badb57efd7725fa540ea7bb13f1e334cb83c.tar.gz |
cleanup: use std::vector in struct device_table
Since we converted from QString to std::string, let's also use
std::vector instead of QVector. We don't need COW semantics
and all the rigmarole. Let's try to keep Qt data structures
out of the core.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/divecomputermodel.h')
-rw-r--r-- | qt-models/divecomputermodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/divecomputermodel.h b/qt-models/divecomputermodel.h index d50e1cd96..b21eadcc9 100644 --- a/qt-models/divecomputermodel.h +++ b/qt-models/divecomputermodel.h @@ -27,7 +27,7 @@ slots: void remove(const QModelIndex &index); private: - QVector<device> dcs; + std::vector<device> dcs; }; class DiveComputerSortedModel : public QSortFilterProxyModel { |