| 926 | emit endResetModel(); |
| 927 | } |
| 928 | QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override |
| 929 | { |
| 930 | if(row < 0 || row >= rowCount()) |
| 931 | return QModelIndex(); |
| 932 | |
| 933 | return createIndex(row, column); |
| 934 | } |
| 935 | |
| 936 | QModelIndex parent(const QModelIndex &index) const override { return QModelIndex(); } |
| 937 | int rowCount(const QModelIndex &parent = QModelIndex()) const override |
no test coverage detected