diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-10-08 13:51:57 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-11 16:25:32 -0700 |
commit | 754160d625d374cc2b98df53511371b0ab286c7a (patch) | |
tree | 1e9cc3363f9b7ec2598e714b34ad6f3cb3c364a0 /desktop-widgets/mapwidget.cpp | |
parent | 66c5c5f72b82bd07c6222dbf624d6389237a590b (diff) | |
download | subsurface-754160d625d374cc2b98df53511371b0ab286c7a.tar.gz |
Map: pass changed coordinates via signal
The coordinates of a "dragged flag" were passed out-of-bound via
the global "displayed_dive_site" object and then a signal was sent
to notify of the changed coordinates.
Instead, pass the coordinates directly via the signal. This makes
the data- and control-flow more clear.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/mapwidget.cpp')
-rw-r--r-- | desktop-widgets/mapwidget.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/desktop-widgets/mapwidget.cpp b/desktop-widgets/mapwidget.cpp index 2966401d2..4b626fcc8 100644 --- a/desktop-widgets/mapwidget.cpp +++ b/desktop-widgets/mapwidget.cpp @@ -46,8 +46,7 @@ void MapWidget::doneLoading(QQuickWidget::Status status) m_mapHelper = rootObject()->findChild<MapWidgetHelper *>(); connect(m_mapHelper, SIGNAL(selectedDivesChanged(QList<int>)), this, SLOT(selectedDivesChanged(QList<int>))); - connect(m_mapHelper, SIGNAL(coordinatesChanged()), - this, SLOT(coordinatesChangedLocal())); + connect(m_mapHelper, &MapWidgetHelper::coordinatesChanged, this, &MapWidget::coordinatesChangedLocal); } void MapWidget::centerOnSelectedDiveSite() @@ -116,10 +115,10 @@ void MapWidget::selectedDivesChanged(QList<int> list) skipReload = false; } -void MapWidget::coordinatesChangedLocal() +void MapWidget::coordinatesChangedLocal(degrees_t latitude, degrees_t longitude) { CHECK_IS_READY_RETURN_VOID(); - emit coordinatesChanged(); + emit coordinatesChanged(latitude, longitude); } void MapWidget::updateDiveSiteCoordinates(uint32_t uuid, degrees_t latitude, degrees_t longitude) |