| 363 | } |
| 364 | |
| 365 | void ProcessBehaviorChartDock::sampleSizeChanged(int value) { |
| 366 | CONDITIONAL_LOCK_RETURN; |
| 367 | for (auto* plot : m_plots) |
| 368 | plot->setSampleSize(value); |
| 369 | } |
| 370 | |
| 371 | void ProcessBehaviorChartDock::maxUpperLimitChanged(const QString& value) { |
| 372 | double max = INFINITY; |
nothing calls this directly
no test coverage detected