aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/ios/iosrunner.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2018-05-07 12:20:04 +0200
committerhjk <hjk@qt.io>2018-05-08 16:18:02 +0000
commite6d583913e95888f337d698757ed9f7d48a0cb55 (patch)
tree038b912c9c010d04b40d6f219531869e6d49342b /src/plugins/ios/iosrunner.h
parent900cbf857b6954129764874e2915c202cdf3ae98 (diff)
iOS: Use run arguments more directly
This also treats the arguments list as an arguments list for running, not as a single argument. Change-Id: Ia95e02c6324947081147b8bf8084cdd3a7d1eaf0 Reviewed-by: Vikas Pachdha <vikas.pachdha@qt.io>
Diffstat (limited to 'src/plugins/ios/iosrunner.h')
-rw-r--r--src/plugins/ios/iosrunner.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/ios/iosrunner.h b/src/plugins/ios/iosrunner.h
index 2db7cf8c0da..16d4c486fae 100644
--- a/src/plugins/ios/iosrunner.h
+++ b/src/plugins/ios/iosrunner.h
@@ -53,7 +53,6 @@ public:
void setQmlDebugging(QmlDebug::QmlDebugServicesPreset qmlDebugServices);
QString bundlePath();
- QStringList extraArgs();
QString deviceId();
IosToolHandler::RunKind runType();
bool cppDebug() const;
@@ -84,7 +83,7 @@ private:
IosToolHandler *m_toolHandler = nullptr;
QString m_bundleDir;
- QStringList m_arguments;
+ QString m_arguments;
ProjectExplorer::IDevice::ConstPtr m_device;
IosDeviceType m_deviceType;
bool m_cppDebug = false;