| 230 | } |
| 231 | |
| 232 | void MatrixModel::handleColumnsAboutToBeRemoved(int first, int count) { |
| 233 | beginRemoveColumns(QModelIndex(), first, first + count - 1); |
| 234 | } |
| 235 | |
| 236 | void MatrixModel::handleColumnsRemoved(int /*first*/, int /*count*/) { |
| 237 | endRemoveColumns(); |
nothing calls this directly
no test coverage detected