Skip to content

Commit

Permalink
Bug 745481 - Doxygen generates bad "More..." file links for functions…
Browse files Browse the repository at this point in the history
… within a namespace

Namespaces are recorded at separate pages as well. Condition should be extended for namespaces as well.
  • Loading branch information
albert-github committed Mar 4, 2015
1 parent 5e5615a commit ea202be
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/memberdef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
Expand Down

0 comments on commit ea202be

Please sign in to comment.