diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-03-13 20:58:25 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | 56dcbd9588fa3b7d70a4b639b71cb18e1c462067 (patch) | |
tree | 7a82e3bcc5e56d8c755f1e0244b5ef296bebaa39 /desktop-widgets/command.cpp | |
parent | 2dcc0a7d1ebf6435060168f343df2adb5f0abb3c (diff) | |
download | subsurface-56dcbd9588fa3b7d70a4b639b71cb18e1c462067.tar.gz |
Undo: implement undo of dive site addition
Implement a dive site addition undo command and connect it to
the add dive site button. The added dive site has a default
name ("new dive site").
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 ee2016c6e..1d34d268b 100644 --- a/desktop-widgets/command.cpp +++ b/desktop-widgets/command.cpp @@ -93,4 +93,9 @@ void editDiveSiteDescription(dive_site *ds, const QString &value) execute(new EditDiveSiteDescription(ds, value)); } +void addDiveSite(const QString &name) +{ + execute(new AddDiveSite(name)); +} + } // namespace Command |