forked from qt-creator/qt-creator
Use Utils::FilePath in SynchronousProcess
Adapt callers and surrounding code. Change-Id: Ie6c1883a44169cf9d790d06b660f46d24dc24c89 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -996,7 +996,8 @@ PerforceResponse PerforcePlugin::synchronousProcess(const QString &workingDir,
|
||||
}
|
||||
}
|
||||
process.setTimeOutMessageBoxEnabled(true);
|
||||
const SynchronousProcessResponse sp_resp = process.run(settings().p4BinaryPath(), args);
|
||||
const SynchronousProcessResponse sp_resp = process.run(
|
||||
CommandLine{FilePath::fromString(settings().p4BinaryPath()), args});
|
||||
|
||||
PerforceResponse response;
|
||||
response.error = true;
|
||||
|
||||
Reference in New Issue
Block a user