mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-08-17 12:14:13 +02:00
Replacing depreciated qAsConst with std::as_const
This commit is contained in:
@@ -21,6 +21,7 @@
|
||||
#include <QSettings>
|
||||
#include <QVariant>
|
||||
#include <algorithm>
|
||||
#include <utility>
|
||||
|
||||
namespace {
|
||||
const QString SETTINGS_GROUP = QStringLiteral("shortcuts/");
|
||||
@@ -143,7 +144,7 @@ void ShortcutManager::setSequence(const QString &id, const QKeySequence &sequenc
|
||||
settings.setValue(key, sequence.toString());
|
||||
}
|
||||
|
||||
for (const QPointer<QObject> &target : qAsConst(it->targets)) {
|
||||
for (const QPointer<QObject> &target : std::as_const(it->targets)) {
|
||||
if (target) {
|
||||
target->setProperty("shortcut", QVariant::fromValue(sequence));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user