diff --git a/src/plugins/projectexplorer/msvctoolchain.cpp b/src/plugins/projectexplorer/msvctoolchain.cpp index d221dd9710f..9114f5bc991 100644 --- a/src/plugins/projectexplorer/msvctoolchain.cpp +++ b/src/plugins/projectexplorer/msvctoolchain.cpp @@ -240,7 +240,7 @@ static QVector detectVisualStudioFromVsWhere(const QSt vsWhereProcess.setTimeoutS(timeoutS); const QStringList arguments { "-products", "*", "-prerelease", "-legacy", "-format", "json", "-utf8"}; - Utils::SynchronousProcessResponse response = vsWhereProcess.run(vswhere, arguments); + Utils::SynchronousProcessResponse response = vsWhereProcess.runBlocking(vswhere, arguments); switch (response.result) { case Utils::SynchronousProcessResponse::Finished: break;