aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@theqtcompany.com>2015-11-17 16:40:27 +0100
committerUlf Hermann <ulf.hermann@theqtcompany.com>2015-11-19 11:33:15 +0000
commit2217eef3a3f5832b6955dc4a2e4ff061364a6a15 (patch)
tree052b9dd3038db296f69fab32aca2336285ad9f92 /src/plugins/qmlprofiler/localqmlprofilerrunner.cpp
parente1dd3cf701f2980472913663f8777ddef760c68d (diff)
QmlDebug: Allow different styles of command line arguments
We have tcp, local, and native by now. We have to expose that in a clean way. Change-Id: I0ce7be693aa7f47ebea7abe435a224a176b6c94b Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'src/plugins/qmlprofiler/localqmlprofilerrunner.cpp')
-rw-r--r--src/plugins/qmlprofiler/localqmlprofilerrunner.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp b/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp
index b955645bef..2d59e4e3a1 100644
--- a/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp
+++ b/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp
@@ -121,8 +121,8 @@ LocalQmlProfilerRunner::~LocalQmlProfilerRunner()
void LocalQmlProfilerRunner::start()
{
- QString arguments = QmlDebug::qmlDebugCommandLineArguments(QmlDebug::QmlProfilerServices,
- m_configuration.port);
+ QString arguments = QmlDebug::qmlDebugTcpArguments(QmlDebug::QmlProfilerServices,
+ m_configuration.port);
if (!m_configuration.executableArguments.isEmpty())
arguments += QLatin1Char(' ') + m_configuration.executableArguments;