| 66 | } |
| 67 | |
| 68 | void Settings::setValue(const UTF8 *settingName, const UTF8 *settingValue) |
| 69 | { |
| 70 | String name; |
| 71 | buildGroupString(name, settingName); |
| 72 | StringTableEntry nameEntry = StringTable->insert(name.c_str()); |
| 73 | |
| 74 | setModStaticFields(false); |
| 75 | setDataField(nameEntry, NULL, settingValue); |
| 76 | setModStaticFields(true); |
| 77 | } |
| 78 | |
| 79 | const UTF8 *Settings::value(const UTF8 *settingName, const UTF8 *defaultValue) |
| 80 | { |
no test coverage detected