| 48 | } |
| 49 | |
| 50 | void SettingsUpdateResourcesControl::loadSettings() |
| 51 | { |
| 52 | mResources->removeAllItems(); |
| 53 | SettingsManager::VectorString paths = |
| 54 | SettingsManager::getInstance().getValueList("Resources/UpdateResource.List"); |
| 55 | for (const auto& path : paths) |
| 56 | mResources->addItem(path); |
| 57 | } |
| 58 | |
| 59 | void SettingsUpdateResourcesControl::saveSettings() |
| 60 | { |
nothing calls this directly
no test coverage detected