diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2016-04-27 07:46:17 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2016-04-27 07:46:17 (GMT) |
commit | d6952dc609f22553c779034a9769c55e22f4194d (patch) | |
tree | fb5c5cc9f60e1161ef798720e266fc3ef036c70b /src/htmlhelp.cpp | |
parent | a56e454d220a8cf669fd1278a048b7be2f276839 (diff) | |
parent | 8dea6e11faf3969c3b6b17b700533f43c9ca73f8 (diff) | |
download | Doxygen-d6952dc609f22553c779034a9769c55e22f4194d.zip Doxygen-d6952dc609f22553c779034a9769c55e22f4194d.tar.gz Doxygen-d6952dc609f22553c779034a9769c55e22f4194d.tar.bz2 |
Merge pull request #473 from c-lipka/fix_765002
Bug 765002 - `@addindex`entries fail to link to the exact location in…
Diffstat (limited to 'src/htmlhelp.cpp')
-rw-r--r-- | src/htmlhelp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp index d365744..24649aa 100644 --- a/src/htmlhelp.cpp +++ b/src/htmlhelp.cpp @@ -190,7 +190,7 @@ void HtmlHelpIndex::writeFields(FTextStream &t) { // finish old list at level 2 if (level2Started) t << " </UL>" << endl; level2Started=FALSE; - + // <Antony> // Added this code so that an item with only one subitem is written // without any subitem. @@ -214,7 +214,7 @@ void HtmlHelpIndex::writeFields(FTextStream &t) if (level2.isEmpty()) { t << " <LI><OBJECT type=\"text/sitemap\">"; - t << "<param name=\"Local\" value=\"" << field2URL(f,TRUE); + t << "<param name=\"Local\" value=\"" << field2URL(f,FALSE); t << "\">"; t << "<param name=\"Name\" value=\"" << m_help->recode(level1) << "\">" "</OBJECT>\n"; |