| 250 | } |
| 251 | |
| 252 | void MatrixModel::handleRowsAboutToBeRemoved(int first, int count) { |
| 253 | beginRemoveRows(QModelIndex(), first, first + count - 1); |
| 254 | } |
| 255 | |
| 256 | void MatrixModel::handleRowsRemoved(int /*first*/, int /*count*/) { |
| 257 | endRemoveRows(); |
nothing calls this directly
no test coverage detected