diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-06-04 10:21:30 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-06-04 08:45:32 -0700 |
commit | b2b24665e7a838cd471fe657cf847571158bd03f (patch) | |
tree | 26701b637256a821de24900ff61758b7a4543f6f /profile-widget | |
parent | 1762ad9472c3abf25ae7f46cbae4c77ae7674a0f (diff) | |
download | subsurface-b2b24665e7a838cd471fe657cf847571158bd03f.tar.gz |
profile: remove DiveCartesianAxis::maxChanged signal
The last listener was removed in 0104b0a91588.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'profile-widget')
-rw-r--r-- | profile-widget/divecartesianaxis.cpp | 1 | ||||
-rw-r--r-- | profile-widget/divecartesianaxis.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/profile-widget/divecartesianaxis.cpp b/profile-widget/divecartesianaxis.cpp index 181e242fc..a959c4307 100644 --- a/profile-widget/divecartesianaxis.cpp +++ b/profile-widget/divecartesianaxis.cpp @@ -45,7 +45,6 @@ void DiveCartesianAxis::setMaximum(double maximum) return; max = maximum; changed = true; - emit maxChanged(); } void DiveCartesianAxis::setMinimum(double minimum) diff --git a/profile-widget/divecartesianaxis.h b/profile-widget/divecartesianaxis.h index ddd9454dd..8d57f56ca 100644 --- a/profile-widget/divecartesianaxis.h +++ b/profile-widget/divecartesianaxis.h @@ -53,7 +53,6 @@ public: signals: void sizeChanged(); - void maxChanged(); protected: ProfileWidget2 *profileWidget; |