aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppcheck
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2023-11-24 17:55:50 +0100
committerhjk <hjk@qt.io>2023-11-27 13:35:28 +0000
commit3bbda8f9daf2d18fe6f973c7a7854ff81ffbdb85 (patch)
tree6a662cd00c0511e2b35905fd3631e571530fc200 /src/plugins/cppcheck
parentba249a35141892168f16fd3c6e4613f7b0f67131 (diff)
ProjectExplorer: Rename Tool{C,c}hainKitAspect
Change-Id: I74460b6402ab00f972c208023f03fac617982a11 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Diffstat (limited to 'src/plugins/cppcheck')
-rw-r--r--src/plugins/cppcheck/cppcheckplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppcheck/cppcheckplugin.cpp b/src/plugins/cppcheck/cppcheckplugin.cpp
index 44381c235ee..4ec26eb73a3 100644
--- a/src/plugins/cppcheck/cppcheckplugin.cpp
+++ b/src/plugins/cppcheck/cppcheckplugin.cpp
@@ -135,7 +135,7 @@ void CppcheckPluginPrivate::updateManualRunAction()
const Target *target = ProjectManager::startupTarget();
const Utils::Id cxx = ProjectExplorer::Constants::CXX_LANGUAGE_ID;
const bool canRun = target && project->projectLanguages().contains(cxx)
- && ToolChainKitAspect::cxxToolChain(target->kit());
+ && ToolchainKitAspect::cxxToolChain(target->kit());
manualRunAction->setEnabled(canRun);
}