diff options
Diffstat (limited to 'qt-models/maplocationmodel.h')
-rw-r--r-- | qt-models/maplocationmodel.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qt-models/maplocationmodel.h b/qt-models/maplocationmodel.h index 404c76d4a..b33d2d65d 100644 --- a/qt-models/maplocationmodel.h +++ b/qt-models/maplocationmodel.h @@ -2,6 +2,7 @@ #ifndef MAPLOCATIONMODEL_H #define MAPLOCATIONMODEL_H +#include "core/subsurface-qt/DiveListNotifier.h" #include <QObject> #include <QVector> #include <QHash> @@ -64,7 +65,6 @@ public: void reload(QObject *map); MapLocation *getMapLocation(const struct dive_site *ds); const QVector<dive_site *> &selectedDs() const; - void updateMapLocationCoordinates(const struct dive_site *ds, QGeoCoordinate coord); Q_INVOKABLE void setSelected(struct dive_site *ds, bool fromClick = true); // The dive site is passed as a QVariant, because a null-QVariant is not automatically // transformed into a null pointer and warning messages are spewed onto the console. @@ -73,6 +73,9 @@ public: protected: QHash<int, QByteArray> roleNames() const override; +private slots: + void diveSiteChanged(struct dive_site *ds, int field); + private: QVector<MapLocation *> m_mapLocations; QHash<int, QByteArray> m_roles; |