| 1047 | } |
| 1048 | |
| 1049 | void CartesianPlotDock::minDateTimeChanged(const QObject* sender, const Dimension dim, qint64 value) { |
| 1050 | CONDITIONAL_LOCK_RETURN; |
| 1051 | |
| 1052 | // selected x range |
| 1053 | const int index{sender->property("row").toInt()}; |
| 1054 | DEBUG(Q_FUNC_INFO << ", x range index: " << index) |
| 1055 | for (auto* plot : m_plotList) |
| 1056 | plot->setMin(dim, index, value); |
| 1057 | updatePlotRangeList(); |
| 1058 | } |
| 1059 | |
| 1060 | void CartesianPlotDock::maxDateTimeChanged(const QObject* sender, const Dimension dim, qint64 value) { |
| 1061 | CONDITIONAL_LOCK_RETURN; |
no test coverage detected