| 13 | #include <QNetworkRequest> |
| 14 | |
| 15 | UserScriptManager::UserScriptManager(Settings *settings, QObject *parent) : |
| 16 | QObject(parent), |
| 17 | m_model(new UserScriptModel(settings, this)) |
| 18 | { |
| 19 | setObjectName(QLatin1String("UserScriptManager")); |
| 20 | connect(settings, &Settings::settingChanged, this, &UserScriptManager::onSettingChanged); |
| 21 | } |
| 22 | |
| 23 | UserScriptManager::~UserScriptManager() |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected