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.cpp | |
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.cpp')
-rw-r--r-- | qt-models/divelocationmodel.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qt-models/divelocationmodel.cpp b/qt-models/divelocationmodel.cpp index a5303da49..973452b16 100644 --- a/qt-models/divelocationmodel.cpp +++ b/qt-models/divelocationmodel.cpp @@ -1,6 +1,12 @@ #include "divelocationmodel.h" #include "dive.h" +LocationInformationModel *LocationInformationModel::instance() +{ + static LocationInformationModel *self = new LocationInformationModel(); + return self; +} + LocationInformationModel::LocationInformationModel(QObject *obj) : QAbstractListModel(obj), internalRowCount(0) { } |