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