Fix mysterious UUID issue

Turned out to be a remainant of previous code that stopped working
correctly due to the changes
This commit is contained in:
Dale Glass 2022-11-01 17:15:50 +01:00
parent 24d4f87341
commit 20548b7b24
2 changed files with 14 additions and 7 deletions

View file

@ -136,14 +136,23 @@ namespace Setting {
void Manager::saveSetting(Interface* handle) {
const auto& key = handle->getKey();
QVariant handleValue = UNSET_VALUE;
if (handle->isSet()) {
handleValue = handle->getVariant();
QVariant handleValue = handle->getVariant();
withWriteLock([&] {
_settings[key] = handleValue;
});
emit valueChanged(key, handleValue);
} else {
withWriteLock([&] {
_settings.remove(key);
});
emit keyRemoved(key);
}
withWriteLock([&] {
_settings[key] = handleValue;
});
}

View file

@ -210,8 +210,6 @@ namespace Setting {
private:
QHash<QString, Interface*> _handles;
const QVariant UNSET_VALUE { QUuid::createUuid() };
friend class Interface;
friend class ::SettingsTests;