diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-03-19 19:52:54 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | 8858bfa1f8cf30cc4eb070fb6e709f7051e61241 (patch) | |
tree | 02c40484ff879ce3bba48085c6fab2809cef43ea /desktop-widgets/command.cpp | |
parent | fde80eeaa5f4ee4150f9292c5783eb790b0fcb96 (diff) | |
download | subsurface-8858bfa1f8cf30cc4eb070fb6e709f7051e61241.tar.gz |
Dive site: implement purge of unused dive sites
Add a "purge unused dive sites" button to the dive site list.
Connect it to a new PurgeUnusedDiveSites command. Implementation
was trivial: simply copy the DeleteDiveSites command.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/command.cpp')
-rw-r--r-- | desktop-widgets/command.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/desktop-widgets/command.cpp b/desktop-widgets/command.cpp index adfd32960..fc7478f94 100644 --- a/desktop-widgets/command.cpp +++ b/desktop-widgets/command.cpp @@ -123,4 +123,9 @@ void mergeDiveSites(dive_site *ds, const QVector<dive_site *> &sites) execute(new MergeDiveSites(ds, sites)); } +void purgeUnusedDiveSites() +{ + execute(new PurgeUnusedDiveSites); +} + } // namespace Command |