Files
yacreader/YACReaderLibrary/comic_vine/scraper_checkbox.cpp

15 lines
342 B
C++

#include "scraper_checkbox.h"
ScraperCheckBox::ScraperCheckBox(const QString &text, QWidget *parent)
: QCheckBox(text, parent)
{
initTheme(this);
}
void ScraperCheckBox::applyTheme(const Theme &theme)
{
auto metadataScraperDialogTheme = theme.metadataScraperDialog;
setStyleSheet(metadataScraperDialogTheme.checkBoxQSS);
}