Convert ScraperMode and ScraperStatus into enum class

This commit is contained in:
Luis Ángel San Martín
2025-05-04 17:26:05 +02:00
parent 89d7d76080
commit 9d7a554ab3
2 changed files with 39 additions and 39 deletions

View File

@ -66,13 +66,13 @@ private:
void toggleSkipButton();
enum ScraperMode {
enum class ScraperMode {
SingleComic, // the scraper has been opened for a single comic
Volume, // the scraper is trying to get comics info for a whole volume
SingleComicInList // the scraper has been opened for a list of unrelated comics
};
enum ScraperStatus {
enum class ScraperStatus {
AutoSearching,
AskingForInfo,
SelectingComic,