| 82 | } |
| 83 | |
| 84 | void INISettingsObject::resetSetting(const Setting &setting) |
| 85 | { |
| 86 | // if we have the setting, remove all the synonyms. ALL OF THEM |
| 87 | if (contains(setting.id())) |
| 88 | { |
| 89 | for(auto iter: setting.configKeys()) |
| 90 | m_ini.remove(iter); |
| 91 | doSave(); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | QVariant INISettingsObject::retrieveValue(const Setting &setting) |
| 96 | { |
nothing calls this directly
no test coverage detected