mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Dive site: pass dive-site pointer to delete_dive_site()
Instead of passing a uuid, pass a pointer to the dive site. This is small step in an effort to remove uuids. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
8de471f90e
commit
f527a70831
8 changed files with 13 additions and 14 deletions
|
@ -888,7 +888,7 @@ void MainTab::acceptChanges()
|
|||
if (oldDs && !is_dive_site_used(oldDs, false)) {
|
||||
if (verbose)
|
||||
qDebug() << "delete now unused dive site" << (oldDs->name ? oldDs->name : "without name");
|
||||
delete_dive_site(oldDs->uuid);
|
||||
delete_dive_site(oldDs);
|
||||
MapWidget::instance()->reload();
|
||||
}
|
||||
// the code above can change the correct uuid for the displayed dive site - and the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue