| 182 | } |
| 183 | |
| 184 | void MatrixDock::columnCountChanged(int columns) { |
| 185 | CONDITIONAL_LOCK_RETURN; |
| 186 | |
| 187 | for (auto* matrix : m_matrixList) |
| 188 | matrix->setColumnCount(columns); |
| 189 | |
| 190 | if (columns == 0) { |
| 191 | // Rowcount changed, because of the internal structure of the matrix |
| 192 | ui.sbRowCount->setValue(0); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | //************************************************************* |
| 197 | //******** SLOTs for changes triggered in Matrix ********* |
nothing calls this directly
no test coverage detected