diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-11-25 07:40:09 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-12 15:52:40 -0800 |
commit | 674c20227b2ced3bfd9b3ab29060e7a2dd5829c3 (patch) | |
tree | e734d86c09becf4f503f4c5089ca5405f7ef479f /desktop-widgets | |
parent | bb76cb56d42e957e03cc705a9f8fd9f637733b5d (diff) | |
download | subsurface-674c20227b2ced3bfd9b3ab29060e7a2dd5829c3.tar.gz |
profile: call clearHandlers() in setPlanState()
This function, which removes the handlers from the profile, was called
in setAddState() but not in setPlanState(). In the latter case it was
called explicitly by the caller.
Move the call from the caller into the function. This allows us to
make clearHandlers() private in to the profile widget.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets')
-rw-r--r-- | desktop-widgets/diveplanner.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/desktop-widgets/diveplanner.cpp b/desktop-widgets/diveplanner.cpp index e4f572498..350371921 100644 --- a/desktop-widgets/diveplanner.cpp +++ b/desktop-widgets/diveplanner.cpp @@ -663,7 +663,6 @@ void PlannerWidgets::replanDive() DivePlannerPointsModel::instance()->setPlanMode(DivePlannerPointsModel::PLAN); MainWindow::instance()->graphics->setPlanState(); - MainWindow::instance()->graphics->clearHandlers(); plannerWidget.setReplanButton(true); plannerWidget.setupStartTime(timestampToDateTime(current_dive->when)); |