diff options
author | hjk <[email protected]> | 2018-08-21 08:28:27 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2018-08-21 08:02:22 +0000 |
commit | 263cf4c6088d579a2cda05b3d5b795840e3e79fc (patch) | |
tree | f5962db81cf53faa05c0bfec67f3b06b1df2fb4c /src/plugins/ios/iosrunner.cpp | |
parent | 98f3b961c6f0f50612cf94ccac4476a93ded3135 (diff) |
ProjectExplorer: Remove RunWorker::setDisplayName
It has been an obsolete alias for setId for a while and downstream
uses have been adapted.
Change-Id: I467370aa67054599c7771e8275d28e62ddc461fa
Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/ios/iosrunner.cpp')
-rw-r--r-- | src/plugins/ios/iosrunner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/ios/iosrunner.cpp b/src/plugins/ios/iosrunner.cpp index 136647d3b4b..26c314398e5 100644 --- a/src/plugins/ios/iosrunner.cpp +++ b/src/plugins/ios/iosrunner.cpp @@ -381,7 +381,7 @@ void IosRunSupport::stop() IosQmlProfilerSupport::IosQmlProfilerSupport(RunControl *runControl) : RunWorker(runControl) { - setDisplayName("IosAnalyzeSupport"); + setId("IosAnalyzeSupport"); auto iosRunConfig = qobject_cast<IosRunConfiguration *>(runControl->runConfiguration()); Runnable runnable; |