summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-02-14 13:55:29 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-02-14 13:55:29 (GMT)
commit116f61c75cc2d5a26b08fe3341ed6711ecea4c72 (patch)
tree8e70e562d7cf8ca6272992dfade57ad4abd535b7
parentf868fe3abd829a2612e2d21c9811f8a79e1231c2 (diff)
downloadCMake-116f61c75cc2d5a26b08fe3341ed6711ecea4c72.zip
CMake-116f61c75cc2d5a26b08fe3341ed6711ecea4c72.tar.gz
CMake-116f61c75cc2d5a26b08fe3341ed6711ecea4c72.tar.bz2
ENH: do not show unititialized entries
-rw-r--r--Source/QtDialog/QCMake.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/QtDialog/QCMake.cxx b/Source/QtDialog/QCMake.cxx
index 0784dae..01c23da 100644
--- a/Source/QtDialog/QCMake.cxx
+++ b/Source/QtDialog/QCMake.cxx
@@ -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;
}