Browse Source

ENH: fix compiler warning

Ken Martin 19 years ago
parent
commit
c0dc50bf6d
1 changed files with 6 additions and 6 deletions
  1. 6 6
      Source/cmPropertyDefinition.cxx

+ 6 - 6
Source/cmPropertyDefinition.cxx

@@ -29,20 +29,20 @@ cmDocumentationEntry cmPropertyDefinition::GetDocumentation() const
 
 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)