summaryrefslogtreecommitdiffstats
path: root/src/memberdef.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-10-22 10:03:05 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-10-22 10:03:05 (GMT)
commit3e6447119d64b492ed55c3baad17b04dd57f4821 (patch)
tree410941d726c79cdc7018d0c39a78fdf3a95e57ab /src/memberdef.cpp
parentb57e0be90a8209574e4033aab0f82ce8313e4b34 (diff)
downloadDoxygen-3e6447119d64b492ed55c3baad17b04dd57f4821.zip
Doxygen-3e6447119d64b492ed55c3baad17b04dd57f4821.tar.gz
Doxygen-3e6447119d64b492ed55c3baad17b04dd57f4821.tar.bz2
Wrong separator in index for a.o. Python, C#
In e.g. the LaTeX output the separator for Pyton, C# is given as '::', this should be '.' . With this fix the problems in the index are gone.
Diffstat (limited to 'src/memberdef.cpp')
-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)
{