ENH: do not show unititialized entries

This commit is contained in:
Bill Hoffman 2008-02-14 08:55:29 -05:00
parent f868fe3abd
commit 116f61c75c
1 changed files with 2 additions and 1 deletions

View File

@ -243,7 +243,8 @@ QCMakeCachePropertyList QCMake::properties() const
{
if(i.GetType() == cmCacheManager::INTERNAL ||
i.GetType() == cmCacheManager::STATIC)
i.GetType() == cmCacheManager::STATIC ||
i.GetType() == cmCacheManager::UNINITIALIZED)
{
continue;
}