summaryrefslogtreecommitdiffstats
path: root/src/memberdef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-06-24 08:55:57 (GMT)
committerGitHub <noreply@github.com>2018-06-24 08:55:57 (GMT)
commit154e877cc2e8b10091d7e0068b6f6d5793cd29f3 (patch)
tree73801f0e1e469d765f07df24e47cb7128d8e9ccb /src/memberdef.cpp
parent22af92975d880c13b9bb08cd829ff7fba4d09160 (diff)
parentedfa0d2a95dacfea8c2cddc1da1e37728d1cc608 (diff)
downloadDoxygen-154e877cc2e8b10091d7e0068b6f6d5793cd29f3.zip
Doxygen-154e877cc2e8b10091d7e0068b6f6d5793cd29f3.tar.gz
Doxygen-154e877cc2e8b10091d7e0068b6f6d5793cd29f3.tar.bz2
Merge pull request #720 from albert-github/feature/bug_python_html
Cannot properly jump from brief to detailed function description in python
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 9be2ecb..819904f 100644
--- a/src/memberdef.cpp
+++ b/src/memberdef.cpp
@@ -2576,7 +2576,7 @@ void MemberDef::writeDocumentation(MemberList *ml,
else if (getFileDef()) { scopeName=getFileDef()->displayName(); scopedContainer=getFileDef(); }
ciname = ((GroupDef *)container)->groupTitle();
}
- else if (container->definitionType()==TypeFile && getNamespaceDef())
+ else if (container->definitionType()==TypeFile && getNamespaceDef() && lang != SrcLangExt_Python)
{ // member is in a namespace, but is written as part of the file documentation
// as well, so we need to make sure its label is unique.
memAnchor.prepend("file_");