From 183bd9f9b3955281c8ba10847238504b4d42a60f Mon Sep 17 00:00:00 2001 From: Sebastien Barre Date: Fri, 21 Dec 2001 16:19:57 -0500 Subject: [PATCH] Fix: vars that have just become ADVANCED should be removed from the GUI --- Source/MFCDialog/CMakeSetupDialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/MFCDialog/CMakeSetupDialog.cpp b/Source/MFCDialog/CMakeSetupDialog.cpp index b21f22979..6a294f025 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; } }