| 145 | } |
| 146 | |
| 147 | void YACReaderTableView::dropEvent(QDropEvent *event) |
| 148 | { |
| 149 | QTableView::dropEvent(event); |
| 150 | |
| 151 | if (model()->canDropMimeData(event->mimeData(), event->proposedAction(), 0, 0, QModelIndex())) |
| 152 | event->acceptProposedAction(); |
| 153 | QLOG_DEBUG() << "drop on table"; |
| 154 | } |
| 155 | |
| 156 | void YACReaderTableView::closeRatingEditor() |
| 157 | { |
nothing calls this directly
no test coverage detected