aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/shellcommand.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2016-07-04 16:32:28 +0200
committerTobias Hunger <tobias.hunger@qt.io>2016-07-15 14:21:40 +0000
commit53c602633c59a89c7874d5d55e0ed91226e0c3f3 (patch)
tree34f926dcc6ddfdb1392b1b00f2e90e9d09c6698d /src/libs/utils/shellcommand.cpp
parentcc27125092b32a69422aa946dfdbdb66d5d8e428 (diff)
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>
Diffstat (limited to 'src/libs/utils/shellcommand.cpp')
-rw-r--r--src/libs/utils/shellcommand.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libs/utils/shellcommand.cpp b/src/libs/utils/shellcommand.cpp
index cb2ce489fc..527be6614f 100644
--- a/src/libs/utils/shellcommand.cpp
+++ b/src/libs/utils/shellcommand.cpp
@@ -327,7 +327,7 @@ Utils::SynchronousProcessResponse ShellCommand::runCommand(const Utils::FileName
proxy->appendCommand(dir, binary, arguments);
if (d->m_flags & FullySynchronously) {
- response = runSynchronous(binary, arguments, timeoutS, dir, interpreter);
+ response = runFullySynchronous(binary, arguments, timeoutS, dir, interpreter);
} else {
Utils::SynchronousProcess process;
process.setExitCodeInterpreter(interpreter);
@@ -393,11 +393,11 @@ Utils::SynchronousProcessResponse ShellCommand::runCommand(const Utils::FileName
return response;
}
-Utils::SynchronousProcessResponse ShellCommand::runSynchronous(const Utils::FileName &binary,
- const QStringList &arguments,
- int timeoutS,
- const QString &workingDirectory,
- const ExitCodeInterpreter &interpreter)
+Utils::SynchronousProcessResponse ShellCommand::runFullySynchronous(const Utils::FileName &binary,
+ const QStringList &arguments,
+ int timeoutS,
+ const QString &workingDirectory,
+ const ExitCodeInterpreter &interpreter)
{
Utils::SynchronousProcessResponse response;