| 52 | } |
| 53 | |
| 54 | void AppearanceConfiguration::write(const QString &key, const QString &value) |
| 55 | { |
| 56 | QSettings s(path, QSettings::IniFormat); |
| 57 | s.beginGroup(kGroup); |
| 58 | s.setValue(key, value); |
| 59 | s.endGroup(); |
| 60 | } |
| 61 | |
| 62 | void AppearanceConfiguration::setMode(ThemeMode mode) |
| 63 | { |
no test coverage detected