diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-03-13 20:10:22 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | 2dcc0a7d1ebf6435060168f343df2adb5f0abb3c (patch) | |
tree | 533995c902f5dc6a629ac606c08a8b3db834d525 /desktop-widgets/command.cpp | |
parent | 0fd85832b7f628d1bb6d308c11b5e53ea1e9f65b (diff) | |
download | subsurface-2dcc0a7d1ebf6435060168f343df2adb5f0abb3c.tar.gz |
Undo: implement undo of dive site description editing
Simply duplicate the code of dive site name editing. Split out
the common functionality that swaps a C and a Qt string.
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 82e5ebe07..ee2016c6e 100644 --- a/desktop-widgets/command.cpp +++ b/desktop-widgets/command.cpp @@ -88,4 +88,9 @@ void editDiveSiteName(dive_site *ds, const QString &value) execute(new EditDiveSiteName(ds, value)); } +void editDiveSiteDescription(dive_site *ds, const QString &value) +{ + execute(new EditDiveSiteDescription(ds, value)); +} + } // namespace Command |