forked from qt-creator/qt-creator
Use pointer to member or member function with transform
... when possible. More compact. Change-Id: I81410b7e6d523b9405c87f70a474ded1fa9ce960 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -354,8 +354,7 @@ QVariant::Type VcsBaseClientSettings::valueType(const QString &key) const
|
||||
FilePath VcsBaseClientSettings::binaryPath() const
|
||||
{
|
||||
if (d->m_binaryFullPath.isEmpty()) {
|
||||
const FilePathList searchPaths
|
||||
= Utils::transform(searchPathList(), [](const QString &s) { return FilePath::fromString(s); });
|
||||
const FilePathList searchPaths = Utils::transform(searchPathList(), &FilePath::fromString);
|
||||
d->m_binaryFullPath = Environment::systemEnvironment().searchInPath(
|
||||
stringValue(binaryPathKey), searchPaths);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user