aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pythonbuildsystem.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2025-11-12 16:51:34 +0100
committerhjk <hjk@qt.io>2025-11-13 09:42:00 +0000
commit690ff4bacd922436bf308ea399d3f0ee80d42fcc (patch)
tree8ae30efa372ad5b65ec261be110b9b1ebfe1b326 /src/plugins/python/pythonbuildsystem.cpp
parentfadbd348a516f16b25863e2e04f14be2effda0a8 (diff)
Use QString::size() instead QString::length()
Minor gain in debug builds and when stepping. Change-Id: I2540d309661e4babfd7331b068c17657ded2a098 Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/python/pythonbuildsystem.cpp')
-rw-r--r--src/plugins/python/pythonbuildsystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/pythonbuildsystem.cpp b/src/plugins/python/pythonbuildsystem.cpp
index 55379d90d00..ea3b9f96593 100644
--- a/src/plugins/python/pythonbuildsystem.cpp
+++ b/src/plugins/python/pythonbuildsystem.cpp
@@ -406,7 +406,7 @@ static void expandEnvironmentVariables(const Environment &env, QString &string)
const QString value = env.value(match.captured(1));
string.replace(index, match.capturedLength(), value);
- index += value.length();
+ index += value.size();
index = string.indexOf(candidate, index, &match);
}