summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorWill Schroeder <will.schroeder@kitware.com>2001-01-12 19:35:15 (GMT)
committerWill Schroeder <will.schroeder@kitware.com>2001-01-12 19:35:15 (GMT)
commitcacd6d160410660bcbc27f02b267833448c1eef1 (patch)
tree6162a797c69ca34936d8e1a34e296064435b0424 /Source/cmMakefile.cxx
parent85d16dbd3568f2d21c2fc94284a33b093358ef4a (diff)
downloadCMake-cacd6d160410660bcbc27f02b267833448c1eef1.zip
CMake-cacd6d160410660bcbc27f02b267833448c1eef1.tar.gz
CMake-cacd6d160410660bcbc27f02b267833448c1eef1.tar.bz2
ENH:Tweaks to dump documentation
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 28e6030..2ecab86 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -393,8 +393,8 @@ int cmMakefile::DumpDocumentationToFile(const char *fileName)
j != m_RuleMakers.end(); ++j)
{
name = (*j).second->GetName();
- terse = (*j).second->TerseDocumentation();
- full = (*j).second->FullDocumentation();
+ terse = (*j).second->GetTerseDocumentation();
+ full = (*j).second->GetFullDocumentation();
f << name << " - " << terse << std::endl
<< "Usage: " << full << std::endl << std::endl;
}