Skip to content

Commit

Permalink
Wrong separator in index for a.o. Python, C#
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
albert-github committed Oct 22, 2018
1 parent b57e0be commit 3e64471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/memberdef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 3e64471

Please sign in to comment.