diff options
Diffstat (limited to 'core/gpslocation.cpp')
-rw-r--r-- | core/gpslocation.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/core/gpslocation.cpp b/core/gpslocation.cpp index 3f4fb887d..e4a9b5185 100644 --- a/core/gpslocation.cpp +++ b/core/gpslocation.cpp @@ -310,23 +310,6 @@ std::vector<DiveAndLocation> GpsLocation::getLocations() return fixes; } -int GpsLocation::applyLocations() -{ - std::vector<DiveAndLocation> fixes = getLocations(); - for (DiveAndLocation &dl: fixes) { - struct dive_site *ds = dl.d->dive_site; - if (!ds) { - ds = create_dive_site(qPrintable(dl.name), &dive_site_table); - add_dive_to_dive_site(dl.d, ds); - invalidate_dive_cache(dl.d); - } - ds->location = dl.location; - } - if (!fixes.empty()) - mark_divelist_changed(true); - return !fixes.empty(); -} - QMap<qint64, gpsTracker> GpsLocation::currentGPSInfo() const { return m_trackers; |