summaryrefslogtreecommitdiffstats
path: root/qt-models/maplocationmodel.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-05-03 23:16:40 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-05-11 12:06:19 -0700
commitd29f82c52d604ddf65476bf382d4bbf1b5634525 (patch)
treee8a8be047551c3a58a89045a04e2a42964cba981 /qt-models/maplocationmodel.cpp
parentb6d830f0047cf0f68d9f7564f02c6b527f5051a0 (diff)
downloadsubsurface-d29f82c52d604ddf65476bf382d4bbf1b5634525.tar.gz
Map: make edit mode depend on dive-site-filtering
Since the dive-site-filter is active either on the dive-site-edit page or the dive-site-list page, use that as the flag for dive-site-edit mode. Moreover, when the filter is reset, the MapWidgetHelper::reloadMapLocations() function is called, so we can use that place to enter/exit edit mode. This makes it easier to keep everything consistent. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/maplocationmodel.cpp')
-rw-r--r--qt-models/maplocationmodel.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/qt-models/maplocationmodel.cpp b/qt-models/maplocationmodel.cpp
index 90d7209f7..1e0fd9c81 100644
--- a/qt-models/maplocationmodel.cpp
+++ b/qt-models/maplocationmodel.cpp
@@ -110,6 +110,11 @@ void MapLocationModel::add(MapLocation *location)
endInsertRows();
}
+const QVector<dive_site *> &MapLocationModel::selectedDs() const
+{
+ return m_selectedDs;
+}
+
void MapLocationModel::reload()
{
int idx;