TODO: get the search configuration for exact match or not
| 624 | |
| 625 | // TODO: get the search configuration for exact match or not |
| 626 | void ComicVineDialog::launchSearchVolume() |
| 627 | { |
| 628 | showLoading(tr("Looking for volume...")); |
| 629 | // TODO: check if volume info is empty. |
| 630 | |
| 631 | QString volumeInfo = searchVolumeWidget->getVolumeInfo(); |
| 632 | bool exactMatch = searchVolumeWidget->getExactMatch(); |
| 633 | |
| 634 | searchVolume({ volumeInfo, 1, exactMatch }); |
| 635 | } |
| 636 | |
| 637 | // TODO: get the search configuration for exact match or not |
| 638 | void ComicVineDialog::launchSearchComic() |
nothing calls this directly
no test coverage detected