summaryrefslogtreecommitdiff
path: root/src/processrunner.cpp
diff options
context:
space:
mode:
authorSeth Riley <17361645+Qudix@users.noreply.github.com>2020-11-03 18:38:45 -0600
committerSeth Riley <17361645+Qudix@users.noreply.github.com>2020-11-03 18:38:45 -0600
commit34e1d05c28bf4676ed8d3e97e969187a05d215b6 (patch)
tree285a418b970ba5daacf0c307cb98ed59fd31cda1 /src/processrunner.cpp
parent68750575d2f28c873b0d68391a7940e61c2ad2d4 (diff)
parenta7d4f2a0c40d35d547e93994be3f92b6d43a0833 (diff)
Merge branch 'master' of https://github.com/ModOrganizer2/modorganizer into master
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;
}