summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-10-22 13:03:48 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-10-22 13:03:48 (GMT)
commitf56ce241a09dff819c194be4585aae99f35d85f1 (patch)
tree24bfee5c8efd1b11d7428c01bd9adc49f341d717
parentb57e0be90a8209574e4033aab0f82ce8313e4b34 (diff)
downloadDoxygen-f56ce241a09dff819c194be4585aae99f35d85f1.zip
Doxygen-f56ce241a09dff819c194be4585aae99f35d85f1.tar.gz
Doxygen-f56ce241a09dff819c194be4585aae99f35d85f1.tar.bz2
issue_6566: INHERIT_DOCS not working for python
methods in Python are always "virtual" (but there is no way to signal it).
-rw-r--r--src/doxygen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 13c60fb..7eb7968 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -7697,7 +7697,7 @@ static void computeMemberRelations()
// bmcd->name().data(),bmd->name().data(),bmd
// );
if (md!=bmd && bmcd && mcd && bmcd!=mcd &&
- (bmd->virtualness()!=Normal ||
+ (bmd->virtualness()!=Normal || bmd->getLanguage()==SrcLangExt_Python ||
bmcd->compoundType()==ClassDef::Interface ||
bmcd->compoundType()==ClassDef::Protocol
) &&