| 1228 | } |
| 1229 | |
| 1230 | void PlotWidget::setAxisScale(QwtAxisId axis_id, double min, double max) { |
| 1231 | if (min > max) { |
| 1232 | std::swap(min, max); |
| 1233 | } |
| 1234 | qwtPlot()->setAxisScale(axis_id, min, max); |
| 1235 | } |
| 1236 | |
| 1237 | double PlotWidget::displayOffsetSeconds() const { |
| 1238 | if (session_ == nullptr) { |
no outgoing calls
no test coverage detected