| 472 | } |
| 473 | |
| 474 | void BoxPlotDock::widthFactorChanged(int value) { |
| 475 | CONDITIONAL_LOCK_RETURN; |
| 476 | |
| 477 | double factor = (double)value / 100.; |
| 478 | for (auto* boxPlot : m_boxPlots) |
| 479 | boxPlot->setWidthFactor(factor); |
| 480 | } |
| 481 | |
| 482 | // markers |
| 483 | void BoxPlotDock::symbolCategoryChanged() { |
nothing calls this directly
no test coverage detected