| 215 | } |
| 216 | |
| 217 | void MatrixModel::updateHeader() { |
| 218 | Q_EMIT headerDataChanged(Qt::Horizontal, 0, m_matrix->columnCount()); |
| 219 | Q_EMIT headerDataChanged(Qt::Vertical, 0, m_matrix->rowCount()); |
| 220 | } |
| 221 | |
| 222 | void MatrixModel::handleColumnsAboutToBeInserted(int before, int count) { |
| 223 | beginInsertColumns(QModelIndex(), before, before + count - 1); |
no test coverage detected