We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e19db7 commit 8cbe5e9Copy full SHA for 8cbe5e9
src/gui/application.cpp
@@ -198,13 +198,16 @@ bool Application::configVersionMigration()
198
QTimer::singleShot(0, qApp, &QCoreApplication::quit);
199
return false;
200
}
201
+ }
202
203
+ if (!deleteKeys.isEmpty()) {
204
auto settings = ConfigFile::settingsWithGroup("foo");
205
settings->endGroup();
206
207
// Wipe confusing keys from the future, ignore the others
208
for (const auto &badKey : std::as_const(deleteKeys)) {
209
settings->remove(badKey);
210
+ qCInfo(lcApplication) << "Migration: removed" << badKey << "key from settings.";
211
212
213
0 commit comments