diff options
| author | Simon Rettberg | 2025-09-22 14:18:00 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2025-09-22 14:18:00 +0200 |
| commit | ef6063ba3614b3f1a44179f82fbc0e9bdf47fe99 (patch) | |
| tree | 290c7bf881e5c01ad818351e36ab5f87821ec766 /src/global.cpp | |
| parent | Try to get timeout logic under control (diff) | |
| download | slxgreeter-ef6063ba3614b3f1a44179f82fbc0e9bdf47fe99.tar.gz slxgreeter-ef6063ba3614b3f1a44179f82fbc0e9bdf47fe99.tar.xz slxgreeter-ef6063ba3614b3f1a44179f82fbc0e9bdf47fe99.zip | |
Port from QWebKit to QWebEngine
Port done by clion + GPT-5
Diffstat (limited to 'src/global.cpp')
| -rw-r--r-- | src/global.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/global.cpp b/src/global.cpp index ce166c6..f20b4b5 100644 --- a/src/global.cpp +++ b/src/global.cpp @@ -148,7 +148,7 @@ QString Global::getCombinedIdpWhitelist() QFileInfoList fileInfoList = configDir.entryInfoList(QStringList() << "*.idp", QDir::Files); QSet<QString> list; - for (QFileInfo fileInfo : fileInfoList) { + for (const QFileInfo& fileInfo : fileInfoList) { QString filePath = fileInfo.absoluteFilePath(); QFile f(filePath); if (!f.open(QFile::ReadOnly)) |
