summaryrefslogtreecommitdiffstats
path: root/src/index.cpp
diff options
context:
space:
mode:
authorrconde01 <rconde01@hotmail.com>2015-02-17 16:32:48 (GMT)
committerrconde01 <rconde01@hotmail.com>2015-02-17 16:32:48 (GMT)
commitf7f3f8ef286cdc2d359ef2b5fa53b2dfeb8faea5 (patch)
tree4f01f0d7b9617ec95ba5ea492219ae940f82c06d /src/index.cpp
parent5bfda3d4c1158e5429349a2698339650dcfbbe88 (diff)
downloadDoxygen-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
Diffstat (limited to 'src/index.cpp')
-rw-r--r--src/index.cpp6
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();
}
}