Commit 1ee284dc authored by Topi Reinio's avatar Topi Reinio
Browse files

qdoc: Remove shared comment nodes from all members page


Shared comment nodes ended up in the 'all members' list for a type.
These showed up as empty list items in those pages.

Fixes: QTBUG-79065
Change-Id: Ia9040e051ef9454b38a04c816c3d8f74302478a4
Reviewed-by: default avatarPaul Wicking <paul.wicking@qt.io>
Showing with 14 additions and 6 deletions
...@@ -934,8 +934,11 @@ void Sections::buildStdCppClassRefPageSections() ...@@ -934,8 +934,11 @@ void Sections::buildStdCppClassRefPageSections()
documentAll = false; documentAll = false;
NodeList::ConstIterator c = aggregate_->constBegin(); NodeList::ConstIterator c = aggregate_->constBegin();
while (c != aggregate_->constEnd()) { while (c != aggregate_->constEnd()) {
Node* n = *c; Node *n = *c;
if (!n->isPrivate() && !n->isProperty() && !n->isRelatedNonmember()) if (!n->isPrivate()
&& !n->isProperty()
&& !n->isRelatedNonmember()
&& !n->isSharedCommentNode())
allMembers.insert(n); allMembers.insert(n);
if (!documentAll && !n->hasDoc()) { if (!documentAll && !n->hasDoc()) {
++c; ++c;
...@@ -961,8 +964,11 @@ void Sections::buildStdCppClassRefPageSections() ...@@ -961,8 +964,11 @@ void Sections::buildStdCppClassRefPageSections()
ClassNode *cn = stack.pop(); ClassNode *cn = stack.pop();
c = cn->constBegin(); c = cn->constBegin();
while (c != cn->constEnd()) { while (c != cn->constEnd()) {
Node* n = *c; Node *n = *c;
if (!n->isPrivate() && !n->isProperty()) if (!n->isPrivate()
&& !n->isProperty()
&& !n->isRelatedNonmember()
&& !n->isSharedCommentNode())
allMembers.insert(n); allMembers.insert(n);
if (!documentAll && !n->hasDoc()) { if (!documentAll && !n->hasDoc()) {
++c; ++c;
...@@ -1001,7 +1007,9 @@ void Sections::buildStdQmlTypeRefPageSections() ...@@ -1001,7 +1007,9 @@ void Sections::buildStdQmlTypeRefPageSections()
++c; ++c;
continue; continue;
} }
allMembers.add(classMap, n); if (!n->isSharedCommentNode())
allMembers.add(classMap, n);
distributeQmlNodeInSummaryVector(sv, n); distributeQmlNodeInSummaryVector(sv, n);
distributeQmlNodeInDetailsVector(dv, n); distributeQmlNodeInDetailsVector(dv, n);
++c; ++c;
...@@ -1026,7 +1034,7 @@ void Sections::buildStdQmlTypeRefPageSections() ...@@ -1026,7 +1034,7 @@ void Sections::buildStdQmlTypeRefPageSections()
NodeList::ConstIterator c = qtn->constBegin(); NodeList::ConstIterator c = qtn->constBegin();
while (c != qtn->constEnd()) { while (c != qtn->constEnd()) {
Node *n = *c; Node *n = *c;
if (n->isInternal()) { if (n->isInternal() || n->isSharedCommentNode()) {
++c; ++c;
continue; continue;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment