diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-10-24 21:14:57 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-29 00:09:31 +0000 |
commit | 6f98dca26e342dff90c5dba81bf81cbeab5f6e63 (patch) | |
tree | 5379e7c17978a05ee21783562a6428e31dd345ea /desktop-widgets/locationinformation.cpp | |
parent | ab29f6416b619c141de979b82dde24cee4d5cb1b (diff) | |
download | subsurface-6f98dca26e342dff90c5dba81bf81cbeab5f6e63.tar.gz |
Dive site: remove argument from diveSiteSelected signal
The diveSiteSelected signal of DiveLocationLineEdit had the dive-site
UUID as argument. But the receiving slot would not use that argument.
Remove this as a tiny step to remove the UUIDs alltogether.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/locationinformation.cpp')
-rw-r--r-- | desktop-widgets/locationinformation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-widgets/locationinformation.cpp b/desktop-widgets/locationinformation.cpp index acafcfe7b..6cdd5c809 100644 --- a/desktop-widgets/locationinformation.cpp +++ b/desktop-widgets/locationinformation.cpp @@ -521,7 +521,7 @@ void DiveLocationLineEdit::itemActivated(const QModelIndex &index) qDebug() << "Setting a Existing dive site"; if (view->isVisible()) view->hide(); - emit diveSiteSelected(currUuid); + emit diveSiteSelected(); } void DiveLocationLineEdit::refreshDiveSiteCache() |