aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qmlmanager.cpp
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-03-17 21:26:57 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-03-17 14:05:24 -0700
commit4bd217299a9a7977d151431e15479fe16b7fbb30 (patch)
treeceace0a2af7719727d17df0a8707a805ff1f7078 /mobile-widgets/qmlmanager.cpp
parentccd024f0ee4c1e8ba66605eacc40db101ee72dc4 (diff)
downloadsubsurface-4bd217299a9a7977d151431e15479fe16b7fbb30.tar.gz
mobile/edit: don't add dive site twice to table
When editing a dive on mobile we might have to create a new dive site. That site is added to the global dive site table in the undo command. However, the code in QMLManager created the dive site with create_dive_site*() functions, which already adds it to the table. The undo command then added the dive site again leading to a hang of the application. To solve this problem, create new alloc_dive_site*() functions that do the same as create_dive_site*() but do not add it to the table. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r--mobile-widgets/qmlmanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index 939ec51bf..dd0a37282 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -922,7 +922,7 @@ static void setupDivesite(DiveSiteChange &res, struct dive *d, struct dive_site
res.editDs = ds;
res.location = location;
} else {
- res.createdDs.reset(create_dive_site_with_gps(locationtext, &location, &dive_site_table));
+ res.createdDs.reset(alloc_dive_site_with_name(locationtext));
add_dive_to_dive_site(d, res.createdDs.get());
}
res.changed = true;
@@ -1040,7 +1040,7 @@ bool QMLManager::checkLocation(DiveSiteChange &res, const DiveObjectHelper &myDi
if (myDive.location != location) {
ds = get_dive_site_by_name(qPrintable(location), &dive_site_table);
if (!ds && !location.isEmpty()) {
- res.createdDs.reset(create_dive_site(qPrintable(location), &dive_site_table));
+ res.createdDs.reset(alloc_dive_site_with_name(qPrintable(location)));
res.changed = true;
ds = res.createdDs.get();
}