diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-01-28 21:42:59 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | 512a2e6b684e237c5e6aacd3cba42fb7d2093e0a (patch) | |
tree | 54b065e2a1f29d99be890df5ed2f916bf2c6ce22 /desktop-widgets/command.cpp | |
parent | f11ac405933f2bc124dcff05ec44dd6860cf712c (diff) | |
download | subsurface-512a2e6b684e237c5e6aacd3cba42fb7d2093e0a.tar.gz |
Undo: implement undo of suit editing
This one was trivially modelled after notes editing. Only difference:
the textChanged() signal was replaced by the editingFinished()
signal so that we're not generating undo-commands on every key-press.
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 7eff9a4c1..7f18b343c 100644 --- a/desktop-widgets/command.cpp +++ b/desktop-widgets/command.cpp @@ -140,4 +140,9 @@ void editMode(const QVector<dive *> dives, int index, int newValue, int oldValue execute(new EditMode(dives, index, newValue, oldValue)); } +void editSuit(const QVector<dive *> dives, const QString &newValue, const QString &oldValue) +{ + execute(new EditSuit(dives, newValue, oldValue)); +} + } // namespace Command |