diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-02-01 08:49:43 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-02-11 20:37:09 -0800 |
commit | b37c261c95761cb5762e91b5d43277d2b0181678 (patch) | |
tree | 21bab13eb399f2eea16bec1ec8def5db33e6d064 /qt-models/cylindermodel.h | |
parent | 33b8cf8a3694158a99ec74c4abde1cb53cd32356 (diff) | |
download | subsurface-b37c261c95761cb5762e91b5d43277d2b0181678.tar.gz |
Cleanup: make CylindersModel::updateBestMixes non-slot
This was not used as a target of a connection anywhere.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/cylindermodel.h')
-rw-r--r-- | qt-models/cylindermodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/cylindermodel.h b/qt-models/cylindermodel.h index 1596fa87f..9f9abc836 100644 --- a/qt-models/cylindermodel.h +++ b/qt-models/cylindermodel.h @@ -43,12 +43,12 @@ public: cylinder_t *cylinderAt(const QModelIndex &index); bool changed; QVariant headerData(int section, Qt::Orientation orientation, int role) const override; + bool updateBestMixes(); public slots: void remove(QModelIndex index); void cylindersReset(const QVector<dive *> &dives); - bool updateBestMixes(); private: int rows; |