aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2016-06-02 15:57:24 +0200
committerUlf Hermann <ulf.hermann@qt.io>2016-06-06 14:44:35 +0000
commit8d3937d1a8930067d444742abfa030dbe4fa6397 (patch)
tree68e31a52d5747522bb48741909d1e025fb80ff0f /src/plugins/qmlprofiler/localqmlprofilerrunner.cpp
parentbae8f22a6ec1932bae0f86f1eb5e167b3d19f402 (diff)
QmlProfiler: Rename "engine" to "runControl"
Call it the same way it's called everywhere else. Change-Id: I5e61275c264c337307643c0874b7c764c4e18118 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'src/plugins/qmlprofiler/localqmlprofilerrunner.cpp')
-rw-r--r--src/plugins/qmlprofiler/localqmlprofilerrunner.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp b/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp
index d7c7c1058e..ce25f18ce7 100644
--- a/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp
+++ b/src/plugins/qmlprofiler/localqmlprofilerrunner.cpp
@@ -65,19 +65,19 @@ Utils::Port LocalQmlProfilerRunner::findFreePort(QString &host)
}
LocalQmlProfilerRunner::LocalQmlProfilerRunner(const Configuration &configuration,
- Debugger::AnalyzerRunControl *engine) :
- QObject(engine),
+ Debugger::AnalyzerRunControl *runControl) :
+ QObject(runControl),
m_configuration(configuration)
{
connect(&m_launcher, &ApplicationLauncher::appendMessage,
this, &LocalQmlProfilerRunner::appendMessage);
connect(this, &LocalQmlProfilerRunner::stopped,
- engine, &Debugger::AnalyzerRunControl::notifyRemoteFinished);
+ runControl, &Debugger::AnalyzerRunControl::notifyRemoteFinished);
connect(this, &LocalQmlProfilerRunner::appendMessage,
- engine, &Debugger::AnalyzerRunControl::appendMessage);
- connect(engine, &Debugger::AnalyzerRunControl::starting,
+ runControl, &Debugger::AnalyzerRunControl::appendMessage);
+ connect(runControl, &Debugger::AnalyzerRunControl::starting,
this, &LocalQmlProfilerRunner::start);
- connect(engine, &RunControl::finished,
+ connect(runControl, &RunControl::finished,
this, &LocalQmlProfilerRunner::stop);
}