diff options
author | hjk <[email protected]> | 2021-05-06 13:07:36 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2021-05-11 09:45:24 +0000 |
commit | f2f40efa03f5303df732310d12efec50251fd075 (patch) | |
tree | c464c4dec218bad87efd7182140629fa927bb184 /src/plugins/ios/iosrunner.cpp | |
parent | 8aafe36d01eba496e3cb6664a5eed9c863152468 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/plugins/ios/iosrunner.cpp')
-rw-r--r-- | src/plugins/ios/iosrunner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/ios/iosrunner.cpp b/src/plugins/ios/iosrunner.cpp index 24bfe1fb6cb..ffbd4f7f010 100644 --- a/src/plugins/ios/iosrunner.cpp +++ b/src/plugins/ios/iosrunner.cpp @@ -197,7 +197,7 @@ void IosRunner::start() this, &IosRunner::handleFinished); const Runnable runnable = runControl()->runnable(); - QStringList args = QtcProcess::splitArgs(runnable.commandLineArguments, OsTypeMac); + QStringList args = ProcessArgs::splitArgs(runnable.commandLineArguments, OsTypeMac); if (m_qmlServerPort.isValid()) { QUrl qmlServer; qmlServer.setPort(m_qmlServerPort.number()); |