diff options
author | hjk <[email protected]> | 2022-05-25 15:57:20 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2022-05-30 14:10:59 +0000 |
commit | 17ee38775647306e7b79549ec5941618bf52c8f1 (patch) | |
tree | 831b2251b4ec9dfde8e4068270aff31b8742ee80 /src/plugins/ios/iosrunner.cpp | |
parent | d325f56cc1c2fcea4cd338d8f4f30a522533446f (diff) |
ProjectExplorer: Dissolve a few uses of Runnable
Change-Id: I71b8f1b00e488360e7f9c136912bc64b5a76609a
Reviewed-by: Jarek Kobus <[email protected]>
Diffstat (limited to 'src/plugins/ios/iosrunner.cpp')
-rw-r--r-- | src/plugins/ios/iosrunner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/ios/iosrunner.cpp b/src/plugins/ios/iosrunner.cpp index d4881346ded..aea7a28b9ca 100644 --- a/src/plugins/ios/iosrunner.cpp +++ b/src/plugins/ios/iosrunner.cpp @@ -197,8 +197,8 @@ void IosRunner::start() connect(m_toolHandler, &IosToolHandler::finished, this, &IosRunner::handleFinished); - const Runnable runnable = runControl()->runnable(); - QStringList args = ProcessArgs::splitArgs(runnable.command.arguments(), OsTypeMac); + const CommandLine command = runControl()->commandLine(); + QStringList args = ProcessArgs::splitArgs(command.arguments(), OsTypeMac); if (m_qmlServerPort.isValid()) { QUrl qmlServer; qmlServer.setPort(m_qmlServerPort.number()); |