diff options
Diffstat (limited to 'core/settings/qPrefPrivate.cpp')
-rw-r--r-- | core/settings/qPrefPrivate.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/core/settings/qPrefPrivate.cpp b/core/settings/qPrefPrivate.cpp index ff335a94f..6e835b92f 100644 --- a/core/settings/qPrefPrivate.cpp +++ b/core/settings/qPrefPrivate.cpp @@ -9,14 +9,17 @@ void qPrefPrivate::copy_txt(const char **name, const QString &string) *name = copy_qstring(string); } -void qPrefPrivate::propSetValue(const QString &key, const QVariant &value) +void qPrefPrivate::propSetValue(const QString &key, const QVariant &value, const QVariant &defaultValue) { // REMARK: making s static (which would be logical) does NOT work // because it gets initialized too early. // Having it as a local variable is light weight, because it is an // interface class. QSettings s; - s.setValue(key, value); + if (value != defaultValue) + s.setValue(key, value); + else + s.remove(key); } QVariant qPrefPrivate::propValue(const QString &key, const QVariant &defaultValue) |