diff options
author | Jarek Kobus <jaroslaw.kobus@qt.io> | 2022-03-22 16:51:38 +0100 |
---|---|---|
committer | Jarek Kobus <jaroslaw.kobus@qt.io> | 2022-03-24 08:53:59 +0000 |
commit | 1b5c4504af5c1f119e68ee10781f0851e9618a44 (patch) | |
tree | aa286c495732a68aff4ccf56c0cf491df8e8527c /src/plugins/projectexplorer/abstractprocessstep.cpp | |
parent | 4ced33f4fe7e460ebe77ae69b15128a45f3a8fe1 (diff) | |
download | qt-creator-1b5c4504af5c1f119e68ee10781f0851e9618a44.tar.gz |
Get rid of no-op calls to QtcProcess::kill()
Leave the work for implicit ProcessReaper.
Change-Id: Ie01c4e996fda18b7cee77851394174556c6f3857
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/abstractprocessstep.cpp')
-rw-r--r-- | src/plugins/projectexplorer/abstractprocessstep.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/abstractprocessstep.cpp b/src/plugins/projectexplorer/abstractprocessstep.cpp index 7c20ca27a7..0088fcd9fb 100644 --- a/src/plugins/projectexplorer/abstractprocessstep.cpp +++ b/src/plugins/projectexplorer/abstractprocessstep.cpp @@ -216,7 +216,7 @@ void AbstractProcessStep::doRun() ? QTextCodec::codecForName("UTF-8") : QTextCodec::codecForLocale()); d->stderrStream = std::make_unique<QTextDecoder>(QTextCodec::codecForLocale()); - d->m_process.reset(new QtcProcess()); + d->m_process.reset(new QtcProcess); d->m_process->setUseCtrlCStub(HostOsInfo::isWindowsHost()); d->m_process->setWorkingDirectory(wd); // Enforce PWD in the environment because some build tools use that. |