diff options
author | rconde01 <rconde01@hotmail.com> | 2015-02-17 16:32:48 (GMT) |
---|---|---|
committer | rconde01 <rconde01@hotmail.com> | 2015-02-17 16:32:48 (GMT) |
commit | f7f3f8ef286cdc2d359ef2b5fa53b2dfeb8faea5 (patch) | |
tree | 4f01f0d7b9617ec95ba5ea492219ae940f82c06d | |
parent | 5bfda3d4c1158e5429349a2698339650dcfbbe88 (diff) | |
download | Doxygen-f7f3f8ef286cdc2d359ef2b5fa53b2dfeb8faea5.zip Doxygen-f7f3f8ef286cdc2d359ef2b5fa53b2dfeb8faea5.tar.gz Doxygen-f7f3f8ef286cdc2d359ef2b5fa53b2dfeb8faea5.tar.bz2 |
Merge branch 'master' into issue744669
Fix for issue 744669
Uses the display name rather than the name for namespace links
-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 e448094..4c4f338 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -2143,13 +2143,13 @@ static void writeNamespaceLinkForMember(OutputList &ol,MemberDef *md,const char QCString &prevNamespaceName) { NamespaceDef *nd=md->getNamespaceDef(); - if (nd && prevNamespaceName!=nd->name()) + if (nd && prevNamespaceName!=nd->displayName()) { ol.docify(separator); ol.writeObjectLink(md->getReference(),md->getOutputFileBase(),md->anchor(), - nd->name()); + nd->displayName()); ol.writeString("\n"); - prevNamespaceName = nd->name(); + prevNamespaceName = nd->displayName(); } } |