summaryrefslogtreecommitdiff
path: root/Source/cmPropertyDefinition.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2007-10-09 14:35:25 -0400
committerKen Martin <ken.martin@kitware.com>2007-10-09 14:35:25 -0400
commit35e13b11f3cce42944e367543b082e7774201e50 (patch)
tree20d811344c7e488cebe7596016601eb71cc12014 /Source/cmPropertyDefinition.cxx
parent18ce24c7486fedc792276721515c9ddefc62ebee (diff)
downloadcmake-35e13b11f3cce42944e367543b082e7774201e50.tar.gz
BUG: revert doc changes since VS7 cannot compile them, will implement them in a different manner
Diffstat (limited to 'Source/cmPropertyDefinition.cxx')
-rw-r--r--Source/cmPropertyDefinition.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmPropertyDefinition.cxx b/Source/cmPropertyDefinition.cxx
index e573fa3c37..3acd1843fa 100644
--- a/Source/cmPropertyDefinition.cxx
+++ b/Source/cmPropertyDefinition.cxx
@@ -22,8 +22,8 @@ cmDocumentationEntry cmPropertyDefinition::GetDocumentation() const
cmDocumentationEntry e;
e.name = this->Name.c_str();
e.brief =
- this->ShortDescription.size() ? this->ShortDescription.c_str() : "";
- e.full = this->FullDescription.size() ? this->FullDescription.c_str() : "";
+ this->ShortDescription.size() ? this->ShortDescription.c_str() : 0;
+ e.full = this->FullDescription.size() ? this->FullDescription.c_str() : 0;
return e;
}