| 59 | } |
| 60 | |
| 61 | void SettingsResourcePathsControl::saveSettings() |
| 62 | { |
| 63 | SettingsManager::VectorString paths; |
| 64 | for (size_t index = 0; index < mResourcePaths->getItemCount(); ++index) |
| 65 | paths.push_back(mResourcePaths->getItemNameAt(index)); |
| 66 | SettingsManager::getInstance().setValueList("Resources/AdditionalPath.List", paths); |
| 67 | } |
| 68 | |
| 69 | void SettingsResourcePathsControl::notifyClickAdd(MyGUI::Widget* _sender) |
| 70 | { |
nothing calls this directly
no test coverage detected