summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2018-10-22 18:30:01 (GMT)
committerGitHub <noreply@github.com>2018-10-22 18:30:01 (GMT)
commit569216eeff63fe836cca053d28ce829f6a71c18c (patch)
tree41c2aba7cfbcaf68b59ee5de0a8f918a5f3a71d3 /src
parent556bc02e67356c9d762892564dd5dc7c04d14be5 (diff)
parent3e6447119d64b492ed55c3baad17b04dd57f4821 (diff)
downloadDoxygen-569216eeff63fe836cca053d28ce829f6a71c18c.zip
Doxygen-569216eeff63fe836cca053d28ce829f6a71c18c.tar.gz
Doxygen-569216eeff63fe836cca053d28ce829f6a71c18c.tar.bz2
Merge pull request #6569 from albert-github/feature/bug_index_class_separator_2
Wrong separator in index for a.o. Python, C#
Diffstat (limited to 'src')
-rw-r--r--src/memberdef.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memberdef.cpp b/src/memberdef.cpp
index 5d74270..1cedc7f 100644
--- a/src/memberdef.cpp
+++ b/src/memberdef.cpp
@@ -2560,7 +2560,7 @@ void MemberDef::writeDocumentation(MemberList *ml,
QCString scopeName = scName;
QCString memAnchor = anchor();
- QCString ciname = container->name();
+ QCString ciname = container->displayName();
Definition *scopedContainer = container; // see bug 753608
if (container->definitionType()==TypeGroup)
{