diff options
author | hjk <[email protected]> | 2024-12-20 17:02:54 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2024-12-20 16:28:12 +0000 |
commit | 9d78bf899efd34315bfe82e65ff7c3b595fefe7b (patch) | |
tree | d278e849fe002f2bcb0e988e615483536c70985a /src/plugins/qmlprofiler/qmlprofilertool.cpp | |
parent | eb4648004faa8121844e2f1b252e63e2e1bfc57f (diff) |
ProjectExplorer: Introduce a RunControl::start()
And use it in various places.
Change-Id: I525d6fe89652ceba9f675b0b8c9e7ea6a8bcf4be
Reviewed-by: Jarek Kobus <[email protected]>
Diffstat (limited to 'src/plugins/qmlprofiler/qmlprofilertool.cpp')
-rw-r--r-- | src/plugins/qmlprofiler/qmlprofilertool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilertool.cpp b/src/plugins/qmlprofiler/qmlprofilertool.cpp index 32fcbbad893..9a0c38a1e7d 100644 --- a/src/plugins/qmlprofiler/qmlprofilertool.cpp +++ b/src/plugins/qmlprofiler/qmlprofilertool.cpp @@ -609,7 +609,7 @@ ProjectExplorer::RunControl *QmlProfilerTool::attachToWaitingApplication() connect(d->m_profilerConnections, &QmlProfilerClientManager::connectionClosed, runControl, &RunControl::initiateStop); - ProjectExplorerPlugin::startRunControl(runControl); + runControl->start(); return runControl; } |