summaryrefslogtreecommitdiff
path: root/src/plugins/clangtools
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2021-05-06 13:07:36 +0200
committerhjk <hjk@qt.io>2021-05-11 09:45:24 +0000
commitf2f40efa03f5303df732310d12efec50251fd075 (patch)
treec464c4dec218bad87efd7182140629fa927bb184 /src/plugins/clangtools
parent8aafe36d01eba496e3cb6664a5eed9c863152468 (diff)
downloadqt-creator-f2f40efa03f5303df732310d12efec50251fd075.tar.gz
Utils: Move process arguments class out of QtcProcess
The main QtcProcess interface is nowadays a CommandLine, with no explicit references left to QtcProcess::Arguments and related static helper functions, so it only clutters the QtcProcess class interface So move these items out of QtcProcess, later potentially to a separate file pair. Change-Id: I45c300b656f5b30e2e2717232c855fdd97c2d1d7 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/clangtools')
-rw-r--r--src/plugins/clangtools/clangtoolsutils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/clangtools/clangtoolsutils.cpp b/src/plugins/clangtools/clangtoolsutils.cpp
index ed09f84127..7baabff081 100644
--- a/src/plugins/clangtools/clangtoolsutils.cpp
+++ b/src/plugins/clangtools/clangtoolsutils.cpp
@@ -324,7 +324,7 @@ ClangDiagnosticConfig diagnosticConfig(const Utils::Id &diagConfigId)
QStringList splitArgs(QString &argsString)
{
QStringList result;
- Utils::QtcProcess::ArgIterator it(&argsString);
+ Utils::ProcessArgs::ArgIterator it(&argsString);
while (it.next())
result.append(it.value());
return result;