diff --git a/src/libs/utils/shellcommand.cpp b/src/libs/utils/shellcommand.cpp index cb2ce489fc9..527be6614f8 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; diff --git a/src/libs/utils/shellcommand.h b/src/libs/utils/shellcommand.h index 4511611b869..512b37c55a3 100644 --- a/src/libs/utils/shellcommand.h +++ b/src/libs/utils/shellcommand.h @@ -162,9 +162,9 @@ protected: private: void run(QFutureInterface &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; };