| 111 | } |
| 112 | |
| 113 | void EpisodesModel::updateFinishTime(const QModelIndex &index, qint64 nTime) |
| 114 | { |
| 115 | if(!currentAnime || !index.isValid()) return; |
| 116 | AnimeWorker::instance()->updateEpTime(currentAnime->name(), currentEps[index.row()].localFile, true, nTime); |
| 117 | } |
| 118 | |
| 119 | QVariant EpisodesModel::data(const QModelIndex &index, int role) const |
| 120 | { |
nothing calls this directly
no test coverage detected