| 220 | } |
| 221 | |
| 222 | void MatrixModel::handleColumnsAboutToBeInserted(int before, int count) { |
| 223 | beginInsertColumns(QModelIndex(), before, before + count - 1); |
| 224 | } |
| 225 | |
| 226 | void MatrixModel::handleColumnsInserted(int /*first*/, int /*count*/) { |
| 227 | endInsertColumns(); |
nothing calls this directly
no test coverage detected