| 96 | } |
| 97 | |
| 98 | void INISettingsObject::resetSetting(const Setting& setting) |
| 99 | { |
| 100 | // if we have the setting, remove all the synonyms. ALL OF THEM |
| 101 | if (contains(setting.id())) { |
| 102 | for (auto iter : setting.configKeys()) |
| 103 | m_ini.remove(iter); |
| 104 | doSave(); |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | QVariant INISettingsObject::retrieveValue(const Setting& setting) |
| 109 | { |
nothing calls this directly
no test coverage detected