diff options
author | Tomaz Canabrava <tomaz.canabrava@gmail.com> | 2015-05-29 22:22:24 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-05-29 20:59:11 -0700 |
commit | ac6a7ab24e087cc150a7eff0ff6e7e4f8c52ce9a (patch) | |
tree | 4aa3130a235a11f5fb6b39c1f791e643ae524a18 /qt-models/divelocationmodel.h | |
parent | d6e61b74fc140ca5a6cb1de3c6b6435b3701aa5b (diff) | |
download | subsurface-ac6a7ab24e087cc150a7eff0ff6e7e4f8c52ce9a.tar.gz |
Update DiveLocationModel when thread finishes
This patch updates the DiveLocationModel when the
GeoLoockupInformationThread finishes, and also selects
the correct index for the displayed dive.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/divelocationmodel.h')
-rw-r--r-- | qt-models/divelocationmodel.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qt-models/divelocationmodel.h b/qt-models/divelocationmodel.h index 1bf7cedfd..ee5f3c362 100644 --- a/qt-models/divelocationmodel.h +++ b/qt-models/divelocationmodel.h @@ -6,11 +6,13 @@ class LocationInformationModel : public QAbstractListModel { Q_OBJECT public: - LocationInformationModel(QObject *obj = 0); + static LocationInformationModel *instance(); int rowCount(const QModelIndex &parent = QModelIndex()) const; QVariant data(const QModelIndex &index = QModelIndex(), int role = Qt::DisplayRole) const; +public slots: void update(); private: + LocationInformationModel(QObject *obj = 0); int internalRowCount; }; |