summaryrefslogtreecommitdiffstats
path: root/src/global.cpp
diff options
context:
space:
mode:
authorSimon Rettberg2025-09-22 14:18:00 +0200
committerSimon Rettberg2025-09-22 14:18:00 +0200
commitef6063ba3614b3f1a44179f82fbc0e9bdf47fe99 (patch)
tree290c7bf881e5c01ad818351e36ab5f87821ec766 /src/global.cpp
parentTry to get timeout logic under control (diff)
downloadslxgreeter-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.cpp2
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))