! called when the custom column for the values was changed. */
| 220 | called when the custom column for the values was changed. |
| 221 | */ |
| 222 | void ValueWidget::columnChanged(const QModelIndex& index) { |
| 223 | CONDITIONAL_LOCK_RETURN; |
| 224 | |
| 225 | this->updateWidgets(); |
| 226 | |
| 227 | auto* column = static_cast<Column*>(index.internalPointer()); |
| 228 | for (auto* value : m_values) |
| 229 | value->setColumn(column); |
| 230 | } |
| 231 | |
| 232 | void ValueWidget::positionChanged(int index) { |
| 233 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected