| 270 | } |
| 271 | |
| 272 | void ErrorBarWidget::xPlusColumnChanged(const QModelIndex& index) { |
| 273 | CONDITIONAL_LOCK_RETURN; |
| 274 | |
| 275 | auto* aspect = static_cast<AbstractAspect*>(index.internalPointer()); |
| 276 | auto* column = dynamic_cast<AbstractColumn*>(aspect); |
| 277 | Q_ASSERT(column); |
| 278 | |
| 279 | for (auto* errorBar : m_errorBars) |
| 280 | errorBar->setXPlusColumn(column); |
| 281 | } |
| 282 | |
| 283 | void ErrorBarWidget::xMinusColumnChanged(const QModelIndex& index) { |
| 284 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected