From e8bc48518ad6c47d60070317b0bbb428cacf8256 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Tue, 26 Jul 2011 15:34:41 +0200 Subject: [PATCH] QMlProfiler: Fix regression when running on Symbian device Use MODE_ANALYZER here, which let CodaRunControl add the '-qmljsdebugger=..' command line argument. Got broken by 36a3028b9d3535. Change-Id: Ic17e1d1a5f379aaa0c6c7bac0ea0b273e58d9215 Reviewed-on: http://codereview.qt.nokia.com/2201 Reviewed-by: Qt Sanity Bot Reviewed-by: Christiaan Janssen --- src/plugins/qmlprofiler/codaqmlprofilerrunner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmlprofiler/codaqmlprofilerrunner.cpp b/src/plugins/qmlprofiler/codaqmlprofilerrunner.cpp index a2414b8f3b7..345d5b61fc4 100644 --- a/src/plugins/qmlprofiler/codaqmlprofilerrunner.cpp +++ b/src/plugins/qmlprofiler/codaqmlprofilerrunner.cpp @@ -49,7 +49,7 @@ CodaQmlProfilerRunner::CodaQmlProfilerRunner(S60DeviceRunConfiguration *configur QObject *parent) : AbstractQmlProfilerRunner(parent), m_configuration(configuration), - m_runControl(new CodaRunControl(configuration, "QmlProfiler")) + m_runControl(new CodaRunControl(configuration, Analyzer::Constants::MODE_ANALYZE)) { connect(m_runControl, SIGNAL(finished()), this, SIGNAL(stopped())); connect(m_runControl,