aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/ios
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-08-30 14:04:20 +0200
committerhjk <hjk@qt.io>2019-09-03 09:10:46 +0000
commitd39d26a54f797ca7900d7e61ff6253b4a8d2d848 (patch)
tree5e469c9401aa0f64d55378778e9b1ec6aa9dd401 /src/plugins/ios
parent524a1f431c3e247a19d39d7734011d10f9873017 (diff)
iOS: Avoid use of RunControl::runConfiguration() in QmlProfiler support
Change-Id: Id296ddb364c7503506e32c01d594cdca15715859 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/ios')
-rw-r--r--src/plugins/ios/iosrunner.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/plugins/ios/iosrunner.cpp b/src/plugins/ios/iosrunner.cpp
index 872e7b1856..9794bd9f18 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);