summaryrefslogtreecommitdiff
path: root/src/processrunner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/processrunner.cpp')
-rw-r--r--src/processrunner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/processrunner.cpp b/src/processrunner.cpp
index 97b5c580..a0e74f47 100644
--- a/src/processrunner.cpp
+++ b/src/processrunner.cpp
@@ -153,7 +153,7 @@ InterestingProcess findInterestingProcessInTrees(const env::Process& root)
}
auto isHidden = [&](auto&& p) {
- for (auto h : hiddenList) {
+ for (auto& h : hiddenList) {
if (p.name().contains(h, Qt::CaseInsensitive)) {
return true;
}