summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-03-05 20:58:32 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-03-05 20:58:32 (GMT)
commitab59567161519f7b23cf8d51ccfad3a913419dec (patch)
treec92a4ffeb9522d76a2c592b22b879a3cebc5dc71
parent9751e8b3f8fa1b35c00e77e788a042e36f0920bb (diff)
parentea202be55d68af33917658e3fec169da3a7fa7a8 (diff)
downloadDoxygen-ab59567161519f7b23cf8d51ccfad3a913419dec.zip
Doxygen-ab59567161519f7b23cf8d51ccfad3a913419dec.tar.gz
Doxygen-ab59567161519f7b23cf8d51ccfad3a913419dec.tar.bz2
Merge pull request #305 from albert-github/feature/bug_745481
Bug 745481 - Doxygen generates bad "More..." file links for functions within a namespace
-rw-r--r--src/memberdef.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/memberdef.cpp b/src/memberdef.cpp
index 9cfc95b..f27a579 100644
--- a/src/memberdef.cpp
+++ b/src/memberdef.cpp
@@ -1808,7 +1808,10 @@ void MemberDef::writeDeclaration(OutputList &ol,
ol.disableAllBut(OutputGenerator::Html);
//ol.endEmphasis();
ol.docify(" ");
- if (separateMemberPages || (m_impl->group!=0 && gd==0)) // forward link to the page or group
+ if (separateMemberPages ||
+ (m_impl->group!=0 && gd==0) ||
+ (m_impl->nspace!=0 && nd==0)
+ ) // forward link to the page or group or namespace
{
ol.startTextLink(getOutputFileBase(),anchor());
}