diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-09 18:35:25 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-09 18:35:25 (GMT) |
commit | 35e13b11f3cce42944e367543b082e7774201e50 (patch) | |
tree | 20d811344c7e488cebe7596016601eb71cc12014 /Source/cmDocumentationFormatterMan.cxx | |
parent | 18ce24c7486fedc792276721515c9ddefc62ebee (diff) | |
download | CMake-35e13b11f3cce42944e367543b082e7774201e50.zip CMake-35e13b11f3cce42944e367543b082e7774201e50.tar.gz CMake-35e13b11f3cce42944e367543b082e7774201e50.tar.bz2 |
BUG: revert doc changes since VS7 cannot compile them, will implement them in a different manner
Diffstat (limited to 'Source/cmDocumentationFormatterMan.cxx')
-rw-r--r-- | Source/cmDocumentationFormatterMan.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmDocumentationFormatterMan.cxx b/Source/cmDocumentationFormatterMan.cxx index 9699deb..0a16b9f 100644 --- a/Source/cmDocumentationFormatterMan.cxx +++ b/Source/cmDocumentationFormatterMan.cxx @@ -35,19 +35,19 @@ void cmDocumentationFormatterMan::PrintSection(std::ostream& os, os << ".SH " << name << "\n"; } if(!section) { return; } - for(const cmDocumentationEntry* op = section; op->brief.size(); ++op) + for(const cmDocumentationEntry* op = section; op->brief; ++op) { - if(op->name.size()) + if(op->name) { os << ".TP\n" << ".B " << (op->name[0]?op->name:"*") << "\n"; - this->PrintFormatted(os, op->brief.c_str()); - this->PrintFormatted(os, op->full.c_str()); + this->PrintFormatted(os, op->brief); + this->PrintFormatted(os, op->full); } else { os << ".PP\n"; - this->PrintFormatted(os, op->brief.c_str()); + this->PrintFormatted(os, op->brief); } } } |