Skip to content

Commit

Permalink
fix for CHM TOC "Classes" entry to point to annotated file
Browse files Browse the repository at this point in the history
bug: when layout file disables Class List but Classes are still visible
the related TOC entry of Compiled HTML Help file does not link to any
page, so the annotated.html file is not reachable from the TOC tree even
though it still gets generated
  • Loading branch information
ppescher committed Mar 27, 2015
1 parent 87429a2 commit 700a9ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.cpp
Expand Up @@ -4140,7 +4140,7 @@ static void writeIndexHierarchyEntries(OutputList &ol,const QList<LayoutNavEntry
case LayoutNavEntry::Classes:
if (annotatedClasses>0 && addToIndex)
{
Doxygen::indexList->addContentsItem(TRUE,lne->title(),0,0,0);
Doxygen::indexList->addContentsItem(TRUE,lne->title(),0,"annotated",0);
Doxygen::indexList->incContentsDepth();
needsClosing=TRUE;
}
Expand Down

0 comments on commit 700a9ac

Please sign in to comment.