Index: sources/view/settings/VSettings.cpp =================================================================== diff -u -rb12cc2840bb819c5222bfd3bc2cc5ca6eb4c37fd -rbc425138c540402c9a9867bf34757e896507eea8 --- sources/view/settings/VSettings.cpp (.../VSettings.cpp) (revision b12cc2840bb819c5222bfd3bc2cc5ca6eb4c37fd) +++ sources/view/settings/VSettings.cpp (.../VSettings.cpp) (revision bc425138c540402c9a9867bf34757e896507eea8) @@ -136,7 +136,7 @@ updateInstructions(group ); } else { //TODO: Since it is global system settings, move this to the settings controller so the C++ backend can also use it. like Date/Time formats. - for (const auto &key : qAsConst(keys)) { + for (const auto &key : std::as_const(keys)) { // DEBUG: qDebug() << " ~~~~~~~~~~ " << category << group << key << _Settings.value(category, group, key).toString (); QVariantMap keyValue; if ( isservicePass (category, group, key) ) { @@ -214,6 +214,8 @@ VSettings::TKeysList VSettings::updateReplacements(const QString &vGroup, const QStringList &vKeys) { TKeysList keysList; + Q_UNUSED(vGroup); Q_UNUSED(vKeys) // TODO: Qt6 port - remove +/* TODO: Qt6 port - QRegularExpression for ( quint16 keyIndex = 0; keyIndex < vKeys.count(); keyIndex++ ) { QRegExp regx("\\{\\s*\\d+\\s*:\\s*\\d+\\s*:\\s*\\w*\\s*:\\s*\\d*\\s*\\}"); QString key = vKeys[keyIndex]; @@ -244,6 +246,7 @@ keyList += key; keysList += keyList; } +*/ return keysList; }