diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2017-08-21 09:03:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-21 09:03:31 (GMT) |
commit | a26e1e55f348c94ca6795009bef495a8ab07b159 (patch) | |
tree | de4993aea0d5bd0379478420c18d167eeb1365f2 | |
parent | 47f130eab1bcb0795fd2998d72867706b63f3859 (diff) | |
parent | 464919adf1cdae9057ff840f40c60472b4c30bfd (diff) | |
download | Doxygen-a26e1e55f348c94ca6795009bef495a8ab07b159.zip Doxygen-a26e1e55f348c94ca6795009bef495a8ab07b159.tar.gz Doxygen-a26e1e55f348c94ca6795009bef495a8ab07b159.tar.bz2 |
Merge pull request #568 from kossebau/makeNavEntriesNamespacesAndFilesLinked
Add links behind nav entries "Namespaces" and "Files" (matching "Classes")
-rw-r--r-- | src/index.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/index.cpp b/src/index.cpp index 10c1dcb..9cd1600 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -4122,7 +4122,7 @@ static void writeIndexHierarchyEntries(OutputList &ol,const QList<LayoutNavEntry { if (documentedNamespaces>0 && addToIndex) { - Doxygen::indexList->addContentsItem(TRUE,lne->title(),0,0,0); + Doxygen::indexList->addContentsItem(TRUE,lne->title(),0,lne->baseFile(),0); Doxygen::indexList->incContentsDepth(); needsClosing=TRUE; } @@ -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; } @@ -4189,7 +4189,7 @@ static void writeIndexHierarchyEntries(OutputList &ol,const QList<LayoutNavEntry { if (documentedHtmlFiles>0 && addToIndex) { - Doxygen::indexList->addContentsItem(TRUE,lne->title(),0,0,0); + Doxygen::indexList->addContentsItem(TRUE,lne->title(),0,lne->baseFile(),0); Doxygen::indexList->incContentsDepth(); needsClosing=TRUE; } |