diff options
author | hjk <[email protected]> | 2019-06-06 16:27:55 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2019-06-11 08:11:07 +0000 |
commit | ca4ba34229c247027074c25abf51bf02ff15af96 (patch) | |
tree | f5f93acda470948ec0f07b1dbfe5a58333bcb8bb /src/libs/utils/synchronousprocess.h | |
parent | 021d3a6c59264e4aac0284628b8d2daadbad4ed7 (diff) |
Use Utils::FilePath in SynchronousProcess
Adapt callers and surrounding code.
Change-Id: Ie6c1883a44169cf9d790d06b660f46d24dc24c89
Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/libs/utils/synchronousprocess.h')
-rw-r--r-- | src/libs/utils/synchronousprocess.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libs/utils/synchronousprocess.h b/src/libs/utils/synchronousprocess.h index f13a7e2db8b..071e20e007b 100644 --- a/src/libs/utils/synchronousprocess.h +++ b/src/libs/utils/synchronousprocess.h @@ -127,14 +127,8 @@ public: void setExitCodeInterpreter(const ExitCodeInterpreter &interpreter); ExitCodeInterpreter exitCodeInterpreter() const; - // Starts a nested event loop and runs the binary with the arguments - // FIXME: Use the CommandLine overload below. - SynchronousProcessResponse run(const QString &binary, const QStringList &args, const QByteArray &writeData = {}); // Starts a nested event loop and runs the command SynchronousProcessResponse run(const CommandLine &cmd, const QByteArray &writeData = {}); - // Starts the binary with the arguments blocking the UI fully - // FIXME: Use the CommandLine overload below. - SynchronousProcessResponse runBlocking(const QString &binary, const QStringList &args); // Starts the command blocking the UI fully SynchronousProcessResponse runBlocking(const CommandLine &cmd); |