diff options
Diffstat (limited to 'desktop-widgets/command.cpp')
-rw-r--r-- | desktop-widgets/command.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/desktop-widgets/command.cpp b/desktop-widgets/command.cpp index 37c53235d..c178c408a 100644 --- a/desktop-widgets/command.cpp +++ b/desktop-widgets/command.cpp @@ -155,4 +155,14 @@ void editVisibility(const QVector<dive *> dives, int newValue, int oldValue) execute(new EditVisibility(dives, newValue, oldValue)); } +void editAirTemp(const QVector<dive *> dives, int newValue, int oldValue) +{ + execute(new EditAirTemp(dives, newValue, oldValue)); +} + +void editWaterTemp(const QVector<dive *> dives, int newValue, int oldValue) +{ + execute(new EditWaterTemp(dives, newValue, oldValue)); +} + } // namespace Command |