| 167 | } |
| 168 | |
| 169 | void MatrixDock::headerFormatChanged(int value) { |
| 170 | CONDITIONAL_LOCK_RETURN; |
| 171 | |
| 172 | auto format = static_cast<Matrix::HeaderFormat>(value); |
| 173 | for (auto* matrix : m_matrixList) |
| 174 | matrix->setHeaderFormat(format); |
| 175 | } |
| 176 | |
| 177 | void MatrixDock::rowCountChanged(int rows) { |
| 178 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected