summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorTobias Koenig <tobias.koenig@kdab.com>2016-01-19 14:22:28 +0100
committerTobias Koenig <tobias.koenig@kdab.com>2016-01-21 21:21:47 +0000
commita01146aac104b05dcf5c7ddbe7b79a897e8bf414 (patch)
tree76a9943bc99865c1214e7cdfe40027cf7559d63f /qmake
parentc7a86c5e0c2c46be0972dac8ed797abbe3ed44ae (diff)
Use QFileInfo::exists(f) instead of QFileInfo(f).exists()
QFileInfo::exists(f) is somewhat faster than the version which creates an temporary object. Change-Id: I5f931a86d9dfad57d99efe04ca115422de43def9 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/win32/msvc_vcproj.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/win32/msvc_vcproj.cpp b/qmake/generators/win32/msvc_vcproj.cpp
index c900cafbf2..a1a8407a11 100644
--- a/qmake/generators/win32/msvc_vcproj.cpp
+++ b/qmake/generators/win32/msvc_vcproj.cpp
@@ -1334,7 +1334,7 @@ void VcprojGenerator::initDeploymentTool()
if (!vcInstallDir.isEmpty()) {
vcInstallDir += "\\ce\\dll\\";
vcInstallDir += project->values("CE_ARCH").join(QLatin1Char(' '));
- if (!QFileInfo(vcInstallDir + QDir::separator() + runtimeVersion).exists())
+ if (!QFileInfo::exists(vcInstallDir + QDir::separator() + runtimeVersion))
runtime.clear();
else
runtime = vcInstallDir;