summaryrefslogtreecommitdiffstats
path: root/src/index.cpp
diff options
context:
space:
mode:
authorFriedrich W. H. Kossebau <kossebau@kde.org>2017-05-24 16:11:44 (GMT)
committerFriedrich W. H. Kossebau <kossebau@kde.org>2017-06-13 16:41:31 (GMT)
commit84fd1fecfe2de7b4f8c88e1923ef7d5958dc70b0 (patch)
treed4649fc25aaf145e98a8158b623cb7b30a3b207b /src/index.cpp
parente7e62101a1a659740223c32cdd525b1e66b1cf09 (diff)
downloadDoxygen-84fd1fecfe2de7b4f8c88e1923ef7d5958dc70b0.zip
Doxygen-84fd1fecfe2de7b4f8c88e1923ef7d5958dc70b0.tar.gz
Doxygen-84fd1fecfe2de7b4f8c88e1923ef7d5958dc70b0.tar.bz2
Fetch filename property from object instead of hardcoded duplicated string
Diffstat (limited to 'src/index.cpp')
-rw-r--r--src/index.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.cpp b/src/index.cpp
index 10c1dcb..474424a 100644
--- a/src/index.cpp
+++ b/src/index.cpp
@@ -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;
}