diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-11-27 20:59:22 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-11-27 20:59:22 (GMT) |
commit | 6156a336331dc49f92ec237af157da5065572dcf (patch) | |
tree | c5014e54fd10faf53fbb1a8d7ba9292308ed1103 | |
parent | 86126dc41f85196b034b5e767fdc5b1e5b7d9d5d (diff) | |
download | CMake-6156a336331dc49f92ec237af157da5065572dcf.zip CMake-6156a336331dc49f92ec237af157da5065572dcf.tar.gz CMake-6156a336331dc49f92ec237af157da5065572dcf.tar.bz2 |
ENH: better output for qt assistant
-rw-r--r-- | Source/cmDocumentationFormatterHTML.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDocumentationFormatterHTML.cxx b/Source/cmDocumentationFormatterHTML.cxx index a1745d3..175bc8d 100644 --- a/Source/cmDocumentationFormatterHTML.cxx +++ b/Source/cmDocumentationFormatterHTML.cxx @@ -92,7 +92,7 @@ void cmDocumentationFormatterHTML { if(name) { - os << "<h2>" << name << "</h2>\n"; + os << "<h2><a name=\"section_" << name << "\"/>" << name << "</h2>\n"; } const std::vector<cmDocumentationEntry> &entries = |