| 38 | } |
| 39 | |
| 40 | int columnCount(const QModelIndex &parent = QModelIndex()) const override |
| 41 | { |
| 42 | Q_UNUSED(parent); |
| 43 | // qDebug() << "EmptyModel::columnCount(...)"; |
| 44 | return 0; |
| 45 | } |
| 46 | |
| 47 | int rowCount(const QModelIndex &parent = QModelIndex()) const override |
| 48 | { |
nothing calls this directly
no test coverage detected