Skip to content

Commit

Permalink
Fetch filename property from object instead of hardcoded duplicated s…
Browse files Browse the repository at this point in the history
…tring
  • Loading branch information
kossebau committed Jun 13, 2017
1 parent e7e6210 commit 84fd1fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.cpp
Expand Up @@ -4151,7 +4151,7 @@ static void writeIndexHierarchyEntries(OutputList &ol,const QList<LayoutNavEntry
case LayoutNavEntry::Classes:
if (annotatedClasses>0 && addToIndex)
{
Doxygen::indexList->addContentsItem(TRUE,lne->title(),0,"annotated",0);
Doxygen::indexList->addContentsItem(TRUE,lne->title(),0,lne->baseFile(),0);
Doxygen::indexList->incContentsDepth();
needsClosing=TRUE;
}
Expand Down

0 comments on commit 84fd1fe

Please sign in to comment.