| 52 | } |
| 53 | |
| 54 | void SettingsResourcesControl::saveSettings() |
| 55 | { |
| 56 | SettingsManager::VectorString paths; |
| 57 | for (size_t index = 0; index < mResources->getItemCount(); ++index) |
| 58 | paths.push_back(mResources->getItemNameAt(index)); |
| 59 | SettingsManager::getInstance().setValueList("Resources/AdditionalResource.List", paths); |
| 60 | } |
| 61 | |
| 62 | void SettingsResourcesControl::notifyClickAdd(MyGUI::Widget* _sender) |
| 63 | { |
nothing calls this directly
no test coverage detected