diff options
Diffstat (limited to 'src/plugins/cppcheck/cppcheckplugin.cpp')
-rw-r--r-- | src/plugins/cppcheck/cppcheckplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppcheck/cppcheckplugin.cpp b/src/plugins/cppcheck/cppcheckplugin.cpp index 4bbab6a4de7..6d338a1df36 100644 --- a/src/plugins/cppcheck/cppcheckplugin.cpp +++ b/src/plugins/cppcheck/cppcheckplugin.cpp @@ -145,7 +145,7 @@ void CppcheckPluginPrivate::updateManualRunAction() using namespace ProjectExplorer; const Project *project = SessionManager::startupProject(); const Target *target = SessionManager::startupTarget(); - const Core::Id cxx = ProjectExplorer::Constants::CXX_LANGUAGE_ID; + const Utils::Id cxx = ProjectExplorer::Constants::CXX_LANGUAGE_ID; const bool canRun = target && project->projectLanguages().contains(cxx) && ToolChainKitAspect::cxxToolChain(target->kit()); manualRunAction->setEnabled(canRun); |