diff options
author | hjk <[email protected]> | 2019-08-30 14:04:20 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2019-09-03 09:10:46 +0000 |
commit | d39d26a54f797ca7900d7e61ff6253b4a8d2d848 (patch) | |
tree | 5e469c9401aa0f64d55378778e9b1ec6aa9dd401 /src/plugins/ios/iosrunner.cpp | |
parent | 524a1f431c3e247a19d39d7734011d10f9873017 (diff) |
iOS: Avoid use of RunControl::runConfiguration() in QmlProfiler support
Change-Id: Id296ddb364c7503506e32c01d594cdca15715859
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/ios/iosrunner.cpp')
-rw-r--r-- | src/plugins/ios/iosrunner.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/plugins/ios/iosrunner.cpp b/src/plugins/ios/iosrunner.cpp index 872e7b18561..9794bd9f189 100644 --- a/src/plugins/ios/iosrunner.cpp +++ b/src/plugins/ios/iosrunner.cpp @@ -387,14 +387,6 @@ IosQmlProfilerSupport::IosQmlProfilerSupport(RunControl *runControl) { setId("IosQmlProfilerSupport"); - auto iosRunConfig = qobject_cast<IosRunConfiguration *>(runControl->runConfiguration()); - Runnable runnable; - runnable.executable = iosRunConfig->localExecutable(); - runnable.commandLineArguments = - runControl->aspect<ArgumentsAspect>()->arguments(iosRunConfig->macroExpander()); - runControl->setDisplayName(iosRunConfig->applicationName()); - runControl->setRunnable(runnable); - m_runner = new IosRunner(runControl); m_runner->setQmlDebugging(QmlDebug::QmlProfilerServices); addStartDependency(m_runner); |