| 382 | } |
| 383 | |
| 384 | void ClassicComicsView::applyModelChanges(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector<int> &roles) |
| 385 | { |
| 386 | Q_UNUSED(topLeft); |
| 387 | Q_UNUSED(bottomRight); |
| 388 | if (roles.contains(ComicModel::ReadColumnRole)) { |
| 389 | comicFlow->setMarks(model->getReadList()); |
| 390 | comicFlow->updateMarks(); |
| 391 | } |
| 392 | } |
| 393 | |
| 394 | void ClassicComicsView::removeItemsFromFlow(const QModelIndex &parent, int from, int to) |
| 395 | { |
nothing calls this directly
no test coverage detected