| 1472 | } |
| 1473 | |
| 1474 | void AxisDock::labelsPrefixChanged() { |
| 1475 | CONDITIONAL_LOCK_RETURN; |
| 1476 | |
| 1477 | const QString& prefix = ui.leLabelsPrefix->text(); |
| 1478 | for (auto* axis : m_axesList) |
| 1479 | axis->setLabelsPrefix(prefix); |
| 1480 | } |
| 1481 | |
| 1482 | void AxisDock::labelsSuffixChanged() { |
| 1483 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected