From c0dc50bf6d98a78a1afb08e4760c2d01085f993e Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Tue, 5 Dec 2006 10:38:36 -0500 Subject: [PATCH] ENH: fix compiler warning --- Source/cmPropertyDefinition.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/cmPropertyDefinition.cxx b/Source/cmPropertyDefinition.cxx index 02b731bbe..9091f34f5 100644 --- a/Source/cmPropertyDefinition.cxx +++ b/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)