diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-01-30 22:13:24 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | de579c1a1ad823fbc42d7e3122b77b03626283c3 (patch) | |
tree | afcb74e7c30f5235ba899fa02ca5e2b5e4ce581a /desktop-widgets/command.h | |
parent | a12adf8e2a5a9fc2471874e69d31ce50bbaf4cb8 (diff) | |
download | subsurface-de579c1a1ad823fbc42d7e3122b77b03626283c3.tar.gz |
Undo: implement undo of air and water temperature editing
Mostly trivial. Since now on editing the field is re-set, the
validation function becomes unnecessary.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/command.h')
-rw-r--r-- | desktop-widgets/command.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/desktop-widgets/command.h b/desktop-widgets/command.h index bc3e36cae..3161120fd 100644 --- a/desktop-widgets/command.h +++ b/desktop-widgets/command.h @@ -57,6 +57,8 @@ void editSuit(const QVector<dive *> dives, const QString &newValue, const QStrin void editMode(const QVector<dive *> dives, int index, int newValue, int oldValue); void editRating(const QVector<dive *> dives, int newValue, int oldValue); void editVisibility(const QVector<dive *> dives, int newValue, int oldValue); +void editAirTemp(const QVector<dive *> dives, int newValue, int oldValue); +void editWaterTemp(const QVector<dive *> dives, int newValue, int oldValue); } // namespace Command |