profile: remove DiveCartesianAxis::tick_size

No user of that. Also remove the setter function.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2021-08-28 23:44:28 +02:00 committed by Dirk Hohndel
parent 8046a05e95
commit 179df1bf80
3 changed files with 0 additions and 16 deletions

View file

@ -59,7 +59,6 @@ DiveCartesianAxis::DiveCartesianAxis(Position position, color_index_t gridColor,
min(0),
max(0),
interval(1),
tick_size(0),
textVisibility(true),
lineVisibility(true),
labelScale(1.0),
@ -300,11 +299,6 @@ QString DiveCartesianAxis::textForValue(double value) const
return QString("%L1").arg(value, 0, 'g', 4);
}
void DiveCartesianAxis::setTickSize(qreal size)
{
tick_size = size;
}
void DiveCartesianAxis::setTickInterval(double i)
{
interval = i;