summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-10-30 10:38:57 +0100
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-10-30 10:38:57 +0100
commit588571dabe9018b99f516f6e545a8a6323c76eb0 (patch)
treed15be6217932dc37e203ef55138057efaed93bbe /src
parentbb4f88952b792fa5479e28a67738a61e6346b671 (diff)
parent78f52a4027da110bf14468b575c7262b4d28d65e (diff)
Merge remote-tracking branch 'origin/5.13.2' into 5.135.13
Diffstat (limited to 'src')
-rw-r--r--src/qdoc/node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qdoc/node.cpp b/src/qdoc/node.cpp
index 82bcd1b25..c840c748d 100644
--- a/src/qdoc/node.cpp
+++ b/src/qdoc/node.cpp
@@ -1114,7 +1114,7 @@ QStringList Aggregate::primaryKeys()
void Aggregate::markUndocumentedChildrenInternal()
{
foreach (Node *child, children_) {
- if (!child->isSharingComment() && !child->hasDoc() && !child->isDontDocument()) {
+ if (!child->isSharingComment() && !child->hasDoc()) {
if (!child->docMustBeGenerated()) {
if (child->isFunction()) {
if (static_cast<FunctionNode*>(child)->hasAssociatedProperties())
@@ -3386,7 +3386,7 @@ void Aggregate::findAllObsoleteThings()
void Aggregate::findAllClasses()
{
foreach (Node *n, children_) {
- if (!n->isPrivate() && !n->isInternal() &&
+ if (!n->isPrivate() && !n->isInternal() && !n->isDontDocument() &&
n->tree()->camelCaseModuleName() != QString("QDoc")) {
if (n->isClassNode()) {
QDocDatabase::cppClasses().insert(n->qualifyCppName().toLower(), n);