diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-09-01 00:05:15 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-09-06 11:48:47 -0700 |
commit | fe07a47989fbcf4b95989d6d32e51da07a5cc211 (patch) | |
tree | 46c29f4dd43533c9b2259e59b682b457916e21a9 /qt-models | |
parent | 15f418e04656e01bc55ebbd80686c74b9727339d (diff) | |
download | subsurface-fe07a47989fbcf4b95989d6d32e51da07a5cc211.tar.gz |
Cleanup: remove MapLocation::coordinateChanged signal
Nobody was listening for that signal. Remove it. This, quite
obviously, makse the setCoordinateNoEmit() function redundant.
Merge with setCoordinateNoEmit().
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models')
-rw-r--r-- | qt-models/maplocationmodel.cpp | 8 | ||||
-rw-r--r-- | qt-models/maplocationmodel.h | 4 |
2 files changed, 1 insertions, 11 deletions
diff --git a/qt-models/maplocationmodel.cpp b/qt-models/maplocationmodel.cpp index 4e513398b..6b4ab03ad 100644 --- a/qt-models/maplocationmodel.cpp +++ b/qt-models/maplocationmodel.cpp @@ -63,12 +63,6 @@ QGeoCoordinate MapLocation::coordinate() void MapLocation::setCoordinate(QGeoCoordinate coord) { m_coordinate = coord; - emit coordinateChanged(); -} - -void MapLocation::setCoordinateNoEmit(QGeoCoordinate coord) -{ - m_coordinate = coord; } struct dive_site *MapLocation::divesite() @@ -246,7 +240,7 @@ void MapLocationModel::diveSiteChanged(struct dive_site *ds, int field) const qreal latitude_r = ds->location.lat.udeg * 0.000001; const qreal longitude_r = ds->location.lon.udeg * 0.000001; QGeoCoordinate coord(latitude_r, longitude_r); - m_mapLocations[row]->setCoordinateNoEmit(coord); + m_mapLocations[row]->setCoordinate(coord); } break; case LocationInformationModel::NAME: diff --git a/qt-models/maplocationmodel.h b/qt-models/maplocationmodel.h index 4f56a146f..5fdddf0f2 100644 --- a/qt-models/maplocationmodel.h +++ b/qt-models/maplocationmodel.h @@ -21,7 +21,6 @@ public: QVariant getRole(int role) const; QGeoCoordinate coordinate(); void setCoordinate(QGeoCoordinate coord); - void setCoordinateNoEmit(QGeoCoordinate coord); struct dive_site *divesite(); enum Roles { @@ -39,9 +38,6 @@ private: QString m_name; public: bool m_selected = false; - -signals: - void coordinateChanged(); }; class MapLocationModel : public QAbstractListModel |