diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-10-11 18:44:05 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-11 16:25:02 -0700 |
commit | ce8199cdfdef97437ad85178c7104f307baf018b (patch) | |
tree | 4979946f2e5128e8508b9359dbdc62dce0bc1864 /core/divesitehelpers.h | |
parent | 76e5c5ac671fdeb29cf667d478a27757054d67cb (diff) | |
download | subsurface-ce8199cdfdef97437ad85178c7104f307baf018b.tar.gz |
Cleanup: remove ReverseGeoLookupThread
Fetching the taxonomy from GPS coordinates was implemented in
a QThread. But the only access to the main function was a
direct call to run(). Thus, the thread was *never* started.
The function call was always asynchronous [it was using an
event loop though, so the UI doesn't hang]. Notably this
means that the signals connected to the thread would never
fire. And the spinner would never be activated.
Thus:
1) Turn the thread into a simple function.
2) Remove the spinner.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/divesitehelpers.h')
-rw-r--r-- | core/divesitehelpers.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/core/divesitehelpers.h b/core/divesitehelpers.h index 9227aa5c2..eabb156f4 100644 --- a/core/divesitehelpers.h +++ b/core/divesitehelpers.h @@ -2,18 +2,6 @@ #ifndef DIVESITEHELPERS_H #define DIVESITEHELPERS_H -#include "units.h" -#include <QThread> - -class ReverseGeoLookupThread : public QThread { -Q_OBJECT -public: - static ReverseGeoLookupThread *instance(); - void lookup(struct dive_site *ds); - void run() override; - -private: - ReverseGeoLookupThread(QObject *parent = 0); -}; +void reverseGeoLookup(); #endif // DIVESITEHELPERS_H |