[cmake-commits] martink committed cmPropertyDefinition.cxx 1.2 1.3

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Dec 5 10:38:40 EST 2006


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv21022

Modified Files:
	cmPropertyDefinition.cxx 
Log Message:
ENH: fix compiler warning


Index: cmPropertyDefinition.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmPropertyDefinition.cxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- cmPropertyDefinition.cxx	5 Dec 2006 15:36:33 -0000	1.2
+++ cmPropertyDefinition.cxx	5 Dec 2006 15:38:36 -0000	1.3
@@ -29,20 +29,20 @@
 
 void cmPropertyDefinition
 ::DefineProperty(const char *name, cmProperty::ScopeType scope,
-                 const char *ShortDescription,
-                 const char *FullDescription,
+                 const char *shortDescription,
+                 const char *fullDescription,
                  bool chain)
 {
   this->Name = name;
   this->Scope = scope;
   this->Chained = chain;
-  if (ShortDescription)
+  if (shortDescription)
     {
-    this->ShortDescription = ShortDescription;
+    this->ShortDescription = shortDescription;
     }
-  if (FullDescription)
+  if (fullDescription)
     {
-    this->FullDescription = FullDescription;
+    this->FullDescription = fullDescription;
     }
   this->LongName = this->Name;
   switch (this->Scope)



More information about the Cmake-commits mailing list