[cmake-commits] hoffman committed QCMake.cxx 1.15 1.16
cmake-commits at cmake.org
cmake-commits at cmake.org
Thu Feb 14 08:55:31 EST 2008
Update of /cvsroot/CMake/CMake/Source/QtDialog
In directory public:/mounts/ram/cvs-serv26734
Modified Files:
QCMake.cxx
Log Message:
ENH: do not show unititialized entries
Index: QCMake.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/QtDialog/QCMake.cxx,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- QCMake.cxx 12 Feb 2008 14:49:42 -0000 1.15
+++ QCMake.cxx 14 Feb 2008 13:55:29 -0000 1.16
@@ -243,7 +243,8 @@
{
if(i.GetType() == cmCacheManager::INTERNAL ||
- i.GetType() == cmCacheManager::STATIC)
+ i.GetType() == cmCacheManager::STATIC ||
+ i.GetType() == cmCacheManager::UNINITIALIZED)
{
continue;
}
More information about the Cmake-commits
mailing list