aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cmakeprojectmanager/cmaketool.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2019-10-17 07:32:01 +0200
committerEike Ziller <eike.ziller@qt.io>2019-10-17 07:32:01 +0200
commit900ef05d374cb5239a728eca6134e371e1ab566e (patch)
treebdd4c1633961661ae40824601eb19f273ea90dcd /src/plugins/cmakeprojectmanager/cmaketool.cpp
parente38ccf16cdb9c9d3829fed643afc829ce633473b (diff)
parent3e56a2b81ebfa2a31b7c0f50b27ba6c37994ac7f (diff)
Merge remote-tracking branch 'origin/4.11'
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmaketool.cpp')
-rw-r--r--src/plugins/cmakeprojectmanager/cmaketool.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmaketool.cpp b/src/plugins/cmakeprojectmanager/cmaketool.cpp
index 411ec19e27c..e8284c5e7e9 100644
--- a/src/plugins/cmakeprojectmanager/cmaketool.cpp
+++ b/src/plugins/cmakeprojectmanager/cmaketool.cpp
@@ -167,8 +167,7 @@ void CMakeTool::setFilePath(const Utils::FilePath &executable)
if (m_executable == executable)
return;
- m_introspection->m_didRun = false;
- m_introspection->m_didAttemptToRun = false;
+ m_introspection = std::make_unique<Internal::IntrospectionData>();
m_executable = executable;
CMakeToolManager::notifyAboutUpdate(this);