| 175 | } |
| 176 | |
| 177 | void MatrixDock::rowCountChanged(int rows) { |
| 178 | CONDITIONAL_LOCK_RETURN; |
| 179 | |
| 180 | for (auto* matrix : m_matrixList) |
| 181 | matrix->setRowCount(rows); |
| 182 | } |
| 183 | |
| 184 | void MatrixDock::columnCountChanged(int columns) { |
| 185 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected