| 326 | } |
| 327 | |
| 328 | void ErrorBarWidget::yPlusColumnChanged(const QModelIndex& index) { |
| 329 | CONDITIONAL_LOCK_RETURN; |
| 330 | |
| 331 | auto* aspect = static_cast<AbstractAspect*>(index.internalPointer()); |
| 332 | auto* column = dynamic_cast<AbstractColumn*>(aspect); |
| 333 | Q_ASSERT(column); |
| 334 | |
| 335 | for (auto* errorBar : m_errorBars) |
| 336 | errorBar->setYPlusColumn(column); |
| 337 | } |
| 338 | |
| 339 | void ErrorBarWidget::yMinusColumnChanged(const QModelIndex& index) { |
| 340 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected