summaryrefslogtreecommitdiff
path: root/src/plugins/ios/iosrunfactories.cpp
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2016-01-27 13:27:06 +0100
committerhjk <hjk@theqtcompany.com>2016-01-27 15:29:11 +0000
commit61709e92665cb70fddc8b5a5cd98e716a078ed1d (patch)
treef951603099a30ce1f58ad67b961b5f8be7199cda /src/plugins/ios/iosrunfactories.cpp
parentfa17e27b7fe95d5b72927ad2b2fc3e7fedaf3d47 (diff)
downloadqt-creator-61709e92665cb70fddc8b5a5cd98e716a078ed1d.tar.gz
Analyzer: Use a StandardRunnable instead of an AnalyzerRunnable
... with a lot potential to code consolidation. Change-Id: I4d3a7fcc1cc6ae8763799f18cf9701695f387791 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Diffstat (limited to 'src/plugins/ios/iosrunfactories.cpp')
-rw-r--r--src/plugins/ios/iosrunfactories.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/ios/iosrunfactories.cpp b/src/plugins/ios/iosrunfactories.cpp
index 2178e57a3e..5d16aa3fe5 100644
--- a/src/plugins/ios/iosrunfactories.cpp
+++ b/src/plugins/ios/iosrunfactories.cpp
@@ -194,9 +194,9 @@ RunControl *IosRunControlFactory::create(RunConfiguration *runConfig,
if (device.isNull())
return 0;
auto iosRunConfig = qobject_cast<IosRunConfiguration *>(runConfig);
- AnalyzerRunnable runnable;
- runnable.debuggee = iosRunConfig->localExecutable().toUserOutput();
- runnable.debuggeeArgs = iosRunConfig->commandLineArguments();
+ StandardRunnable runnable;
+ runnable.executable = iosRunConfig->localExecutable().toUserOutput();
+ runnable.commandLineArguments = iosRunConfig->commandLineArguments();
AnalyzerConnection connection;
connection.analyzerHost = QLatin1String("localhost");
runControl->setRunnable(runnable);