profile: remove DiveCartesianAxis::maxChanged signal

The last listener was removed in 0104b0a915.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2021-06-04 10:21:30 +02:00 committed by Dirk Hohndel
parent 1762ad9472
commit b2b24665e7
2 changed files with 0 additions and 2 deletions

View file

@ -45,7 +45,6 @@ void DiveCartesianAxis::setMaximum(double maximum)
return; return;
max = maximum; max = maximum;
changed = true; changed = true;
emit maxChanged();
} }
void DiveCartesianAxis::setMinimum(double minimum) void DiveCartesianAxis::setMinimum(double minimum)

View file

@ -53,7 +53,6 @@ public:
signals: signals:
void sizeChanged(); void sizeChanged();
void maxChanged();
protected: protected:
ProfileWidget2 *profileWidget; ProfileWidget2 *profileWidget;