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;
max = maximum;
changed = true;
emit maxChanged();
}
void DiveCartesianAxis::setMinimum(double minimum)

View file

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