diff --git a/src/app/upgrade.cpp b/src/app/upgrade.cpp index 3308d523f..9ae11b7ad 100644 --- a/src/app/upgrade.cpp +++ b/src/app/upgrade.cpp @@ -233,8 +233,8 @@ namespace { struct KeyMapping { - QString oldKey; QString newKey; + QString oldKey; }; const KeyMapping mappings[] = @@ -322,7 +322,7 @@ namespace { const auto value = settingsStorage->loadValue(mapping.oldKey); settingsStorage->storeValue(mapping.newKey, value); - settingsStorage->removeValue(mapping.oldKey); + // TODO: Remove oldKey after ~v4.4.3 and bump migration version } } }