| 919 | config.reset(); |
| 920 | } |
| 921 | void endReset(const BufferConfiguration &conf) |
| 922 | { |
| 923 | config = conf; |
| 924 | cacheColumns(); |
| 925 | totalColumnCount = columnLookup.count() + reservedColumnCount(); |
| 926 | emit endResetModel(); |
| 927 | } |
| 928 | QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override |
| 929 | { |
| 930 | if(row < 0 || row >= rowCount()) |
no test coverage detected