forked from qt-creator/qt-creator
Use QFileInfo::exists(...) which is faster that QFileInfo(..).exists
Change-Id: I0d2e61d84c74e60ef4f54074a4ca00f2d0835562 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
Laurent Montel
parent
f976dc96fd
commit
5d27bc747b
@@ -56,7 +56,7 @@ static QString appBundleExpandedPath(const QString &path)
|
||||
QFileInfo info(path);
|
||||
if (info.isDir()) {
|
||||
QString exePath = path + QLatin1String("/Contents/MacOS/") + info.completeBaseName();
|
||||
if (QFileInfo(exePath).exists())
|
||||
if (QFileInfo::exists(exePath))
|
||||
return exePath;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user