diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-12-05 15:38:36 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-12-05 15:38:36 (GMT) |
commit | c0dc50bf6d98a78a1afb08e4760c2d01085f993e (patch) | |
tree | 661c0b672046d0464fe7b9c1b1772fb755599774 /Source/cmPropertyDefinition.cxx | |
parent | 0b7e1f53987dc5e95bbfb538e9feb840cd317ebd (diff) | |
download | CMake-c0dc50bf6d98a78a1afb08e4760c2d01085f993e.zip CMake-c0dc50bf6d98a78a1afb08e4760c2d01085f993e.tar.gz CMake-c0dc50bf6d98a78a1afb08e4760c2d01085f993e.tar.bz2 |
ENH: fix compiler warning
Diffstat (limited to 'Source/cmPropertyDefinition.cxx')
-rw-r--r-- | Source/cmPropertyDefinition.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmPropertyDefinition.cxx b/Source/cmPropertyDefinition.cxx index 02b731b..9091f34 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) |