diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-10-26 16:57:08 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-29 00:09:31 +0000 |
commit | acd44467c1100a1a774cc644921b1dc33dca1266 (patch) | |
tree | 819d967b4d41c5b72d357f00d69826b743f07e6f /desktop-widgets/locationinformation.h | |
parent | f41bb32428f1e6377b7b293215e8c2f71fa06c9a (diff) | |
download | subsurface-acd44467c1100a1a774cc644921b1dc33dca1266.tar.gz |
Dive site: remove [start|stop]FilterDiveSite signals
This is another case of a weird pattern where an object would
connect it's own signal to the slot of a different object.
There seems to be no reason why the former couldn't simply
call the latter.
Remove the [start|stop]FilterDiveSite signals of LocationInformationWidget
and call the corresponding functions of MultiFilterSortModel directly.
While doing so, replace the UUID argument by a pointer-to-divesite.
It will be converted anyway right at the beginning of the function.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/locationinformation.h')
-rw-r--r-- | desktop-widgets/locationinformation.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/desktop-widgets/locationinformation.h b/desktop-widgets/locationinformation.h index d01340b07..689422dca 100644 --- a/desktop-widgets/locationinformation.h +++ b/desktop-widgets/locationinformation.h @@ -41,8 +41,6 @@ private slots: void updateLocationOnMap(); signals: void endEditDiveSite(); - void startFilterDiveSite(uint32_t uuid); - void stopFilterDiveSite(); void nameChanged(const QString &oldName, const QString &newName); private: |