| 62 | } |
| 63 | |
| 64 | QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override |
| 65 | { |
| 66 | Q_UNUSED(row); |
| 67 | Q_UNUSED(column); |
| 68 | Q_UNUSED(parent); |
| 69 | // qDebug() << "EmptyModel::index(" << row << column << ")"; |
| 70 | return QModelIndex(); |
| 71 | } |
| 72 | |
| 73 | QModelIndex parent(const QModelIndex &parent) const override |
| 74 | { |
nothing calls this directly
no test coverage detected