summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2017-08-21 09:03:31 (GMT)
committerGitHub <noreply@github.com>2017-08-21 09:03:31 (GMT)
commita26e1e55f348c94ca6795009bef495a8ab07b159 (patch)
treede4993aea0d5bd0379478420c18d167eeb1365f2 /src
parent47f130eab1bcb0795fd2998d72867706b63f3859 (diff)
parent464919adf1cdae9057ff840f40c60472b4c30bfd (diff)
downloadDoxygen-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")
Diffstat (limited to 'src')
-rw-r--r--src/index.cpp6
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;
}