| 502 | } |
| 503 | |
| 504 | void BoxPlotDock::jitteringEnabledChanged(bool state) { |
| 505 | CONDITIONAL_LOCK_RETURN; |
| 506 | |
| 507 | for (auto* boxPlot : m_boxPlots) |
| 508 | boxPlot->setJitteringEnabled(state); |
| 509 | } |
| 510 | |
| 511 | // whiskers |
| 512 | void BoxPlotDock::whiskersTypeChanged(int index) { |
nothing calls this directly
no test coverage detected