diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-03-14 23:28:45 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | b5d4d88fe596fa91a3f3491fe8acc220a0df7b72 (patch) | |
tree | e198af14ac0c2a72609aa66f0c644821c650650e /desktop-widgets/command.cpp | |
parent | 0b851d723e1b57fd2065c268977e023cfb364066 (diff) | |
download | subsurface-b5d4d88fe596fa91a3f3491fe8acc220a0df7b72.tar.gz |
Dive site: remove edit mode from dive location widget
Since no dive site field editing enters edit mode anymore,
the whole edit mode state and code can be removed from the
widget.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/command.cpp')
-rw-r--r-- | desktop-widgets/command.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-widgets/command.cpp b/desktop-widgets/command.cpp index 36d9faf5a..4ba6c10e9 100644 --- a/desktop-widgets/command.cpp +++ b/desktop-widgets/command.cpp @@ -103,7 +103,7 @@ void editDiveSiteCountry(dive_site *ds, const QString &value) execute(new EditDiveSiteCountry(ds, value)); } -void editDiveSiteLocation(dive_site *ds, const QString &value) +void editDiveSiteLocation(dive_site *ds, location_t value) { execute(new EditDiveSiteLocation(ds, value)); } |