| 342 | } |
| 343 | |
| 344 | void HistogramDock::normalizationChanged(int index) { |
| 345 | CONDITIONAL_LOCK_RETURN; |
| 346 | |
| 347 | auto normalization = Histogram::Normalization(index); |
| 348 | for (auto* curve : m_curvesList) |
| 349 | curve->setNormalization(normalization); |
| 350 | } |
| 351 | |
| 352 | void HistogramDock::binningMethodChanged(int index) { |
| 353 | const auto binningMethod = Histogram::BinningMethod(index); |
nothing calls this directly
no test coverage detected