aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/projectinfo_test.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2024-01-18 16:09:25 +0100
committerhjk <hjk@qt.io>2024-01-19 10:29:33 +0000
commitd234e716432840fa3fcd0a1c4071e3049f00ba1f (patch)
tree2025a7b3c713f3d7e75ec8095dfae935dfb16f2b /src/plugins/cppeditor/projectinfo_test.cpp
parentbb88c8c9beb8d43871c252934da0a75b2e45fc36 (diff)
All: More ToolChain->Toolchain renamings
And removal of one unused function declaration. Change-Id: I594e23401d8f247d3be081ce850005574951899d Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/cppeditor/projectinfo_test.cpp')
-rw-r--r--src/plugins/cppeditor/projectinfo_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/cppeditor/projectinfo_test.cpp b/src/plugins/cppeditor/projectinfo_test.cpp
index d7bcd99a1f..19c869c148 100644
--- a/src/plugins/cppeditor/projectinfo_test.cpp
+++ b/src/plugins/cppeditor/projectinfo_test.cpp
@@ -355,9 +355,9 @@ class ProjectInfoGeneratorTestHelper
public:
ProjectInfoGeneratorTestHelper()
{
- TestToolchain aToolChain;
- projectUpdateInfo.cxxToolchainInfo = {&aToolChain, {}, {}};
- projectUpdateInfo.cToolchainInfo = {&aToolChain, {}, {}};
+ TestToolchain toolchain;
+ projectUpdateInfo.cxxToolchainInfo = {&toolchain, {}, {}};
+ projectUpdateInfo.cToolchainInfo = {&toolchain, {}, {}};
}
ProjectInfo::ConstPtr generate()