Utils::ShellCommand: Rename runSynchronous to runFullySynchronous

This name just got free, so use it for the method that actually is
called if the process runs with the FullySynchronously flag set.

Change-Id: Ic86bb291d578ad06b74db1ab89a22b1b8cb4f4bb
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Tobias Hunger
2016-07-04 16:32:28 +02:00
parent cc27125092
commit 53c602633c
2 changed files with 9 additions and 9 deletions

View File

@@ -162,9 +162,9 @@ protected:
private:
void run(QFutureInterface<void> &future);
SynchronousProcessResponse runSynchronous(const FileName &binary, const QStringList &arguments,
int timeoutS, const QString &workingDirectory,
const ExitCodeInterpreter &interpreter = defaultExitCodeInterpreter);
SynchronousProcessResponse runFullySynchronous(const FileName &binary, const QStringList &arguments,
int timeoutS, const QString &workingDirectory,
const ExitCodeInterpreter &interpreter = defaultExitCodeInterpreter);
class Internal::ShellCommandPrivate *const d;
};