| 2182 | } |
| 2183 | |
| 2184 | void LibraryWindow::resetComicRating() |
| 2185 | { |
| 2186 | QModelIndexList indexList = getSelectedComics(); |
| 2187 | |
| 2188 | comicsModel->startTransaction(); |
| 2189 | for (auto &index : indexList) { |
| 2190 | comicsModel->resetComicRating(index); |
| 2191 | } |
| 2192 | comicsModel->finishTransaction(); |
| 2193 | } |
| 2194 | |
| 2195 | void LibraryWindow::checkSearchNumResults(int numResults) |
| 2196 | { |
nothing calls this directly
no test coverage detected