diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-10-23 19:11:13 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-29 00:09:31 +0000 |
commit | f527a70831a37e736431baa5705c9d188fc12f4b (patch) | |
tree | 5260e51c944b193175b9e318457bb281ee760fdf /qt-models | |
parent | 8de471f90e95a5a75d0fec78d5bbf900eb90f235 (diff) | |
download | subsurface-f527a70831a37e736431baa5705c9d188fc12f4b.tar.gz |
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>
Diffstat (limited to 'qt-models')
-rw-r--r-- | qt-models/divelocationmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/divelocationmodel.cpp b/qt-models/divelocationmodel.cpp index 5949628b5..43ab8eac7 100644 --- a/qt-models/divelocationmodel.cpp +++ b/qt-models/divelocationmodel.cpp @@ -97,7 +97,7 @@ bool LocationInformationModel::removeRows(int row, int, const QModelIndex&) beginRemoveRows(QModelIndex(), row, row); struct dive_site *ds = get_dive_site(row); if (ds) - delete_dive_site(ds->uuid); + delete_dive_site(ds); endRemoveRows(); return true; } |