| 417 | } |
| 418 | |
| 419 | QByteArray GridComicsView::getMimeDataFromSelection() |
| 420 | { |
| 421 | QByteArray data; |
| 422 | |
| 423 | QMimeData *mimeData = model->mimeData(selectionHelper->selectedIndexes()); |
| 424 | data = mimeData->data(YACReader::YACReaderLibrarComiscSelectionMimeDataFormat); |
| 425 | |
| 426 | delete mimeData; |
| 427 | |
| 428 | return data; |
| 429 | } |
| 430 | |
| 431 | void GridComicsView::updateCurrentComicView() |
| 432 | { |
nothing calls this directly
no test coverage detected