From 35e13b11f3cce42944e367543b082e7774201e50 Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Tue, 9 Oct 2007 14:35:25 -0400 Subject: BUG: revert doc changes since VS7 cannot compile them, will implement them in a different manner --- Source/cmPropertyDefinition.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/cmPropertyDefinition.cxx') 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; } -- cgit v1.2.1