diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-12-21 21:19:57 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-12-21 21:19:57 (GMT) |
commit | 183bd9f9b3955281c8ba10847238504b4d42a60f (patch) | |
tree | 56841b2df8ff0aeb2ba3a51f6d26859b9cb33325 /Source/MFCDialog | |
parent | 2c7bb2bf343f7c2614706c012ba4f751231802c3 (diff) | |
download | CMake-183bd9f9b3955281c8ba10847238504b4d42a60f.zip CMake-183bd9f9b3955281c8ba10847238504b4d42a60f.tar.gz CMake-183bd9f9b3955281c8ba10847238504b4d42a60f.tar.bz2 |
Fix: vars that have just become ADVANCED should be removed from the GUI
Diffstat (limited to 'Source/MFCDialog')
-rw-r--r-- | Source/MFCDialog/CMakeSetupDialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/MFCDialog/CMakeSetupDialog.cpp b/Source/MFCDialog/CMakeSetupDialog.cpp index b21f229..6a294f0 100644 --- a/Source/MFCDialog/CMakeSetupDialog.cpp +++ b/Source/MFCDialog/CMakeSetupDialog.cpp @@ -635,6 +635,7 @@ void CMakeSetupDialog::FillCacheGUIFromCacheManager() { if(cmCacheManager::GetInstance()->IsAdvanced(key)) { + m_CacheEntriesList.RemoveProperty(key); continue; } } |