| 240 | } |
| 241 | |
| 242 | void MatrixModel::handleRowsAboutToBeInserted(int before, int count) { |
| 243 | beginInsertRows(QModelIndex(), before, before + count - 1); |
| 244 | } |
| 245 | |
| 246 | void MatrixModel::handleRowsInserted(int /*first*/, int /*count*/) { |
| 247 | endInsertRows(); |
nothing calls this directly
no test coverage detected