| 8 | } |
| 9 | |
| 10 | void Settings::setValue(const QString &key, const QVariant &value) { |
| 11 | QSettings::setValue(key, value); |
| 12 | } |
| 13 | |
| 14 | QVariant Settings::value(const QString &key, const QVariant &defaultValue) const { |
| 15 | return QSettings::value(key, defaultValue); |
nothing calls this directly
no outgoing calls
no test coverage detected