| 43 | } |
| 44 | |
| 45 | void SettingsResourcesControl::loadSettings() |
| 46 | { |
| 47 | mResources->removeAllItems(); |
| 48 | SettingsManager::VectorString paths = |
| 49 | SettingsManager::getInstance().getValueList("Resources/AdditionalResource.List"); |
| 50 | for (const auto& path : paths) |
| 51 | mResources->addItem(path); |
| 52 | } |
| 53 | |
| 54 | void SettingsResourcesControl::saveSettings() |
| 55 | { |
nothing calls this directly
no test coverage detected