| 426 | } |
| 427 | |
| 428 | void BoxPlotDock::variableWidthChanged(bool state) { |
| 429 | CONDITIONAL_LOCK_RETURN; |
| 430 | |
| 431 | for (auto* boxPlot : m_boxPlots) |
| 432 | boxPlot->setVariableWidth(state); |
| 433 | } |
| 434 | |
| 435 | void BoxPlotDock::notchesEnabledChanged(bool state) { |
| 436 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected