| 1647 | } |
| 1648 | |
| 1649 | void LibraryWindow::onAddComicsToLabel() |
| 1650 | { |
| 1651 | auto action = static_cast<QAction *>(sender()); |
| 1652 | |
| 1653 | qulonglong labelId = action->data().toULongLong(); |
| 1654 | |
| 1655 | QModelIndexList comics = getSelectedComics(); |
| 1656 | |
| 1657 | comicsModel->addComicsToLabel(comics, labelId); |
| 1658 | } |
| 1659 | |
| 1660 | void LibraryWindow::setToolbarTitle(const QModelIndex &modelIndex) |
| 1661 | { |
nothing calls this directly
no test coverage detected