| 168 | QTableView::closeEditor(editor, hint); |
| 169 | } |
| 170 | void YACReaderTableView::commitData(QWidget *editor) |
| 171 | { |
| 172 | // TODO |
| 173 | StarEditor *starEditor = qobject_cast<StarEditor *>(editor); |
| 174 | if (starEditor->getShouldCommitData()) |
| 175 | emit comicRated(((StarEditor *)editor)->starRating().starCount(), currentIndexEditing); |
| 176 | } |
| 177 | |
| 178 | void YACReaderTableView::resizeEvent(QResizeEvent *event) |
| 179 | { |
nothing calls this directly
no test coverage detected