summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@qt.io>2019-07-03 15:25:20 +0200
committerMartin Smith <martin.smith@qt.io>2019-07-05 18:40:46 +0200
commit4c393157a17f8d46634574f0add2f7d59ecc9c04 (patch)
treeb8cba263f723d143c081030dbd4abf25c4830eee
parentde220c1a8459b0d5a4080e0d637e1a5e5a920394 (diff)
downloadqttools-4c393157a17f8d46634574f0add2f7d59ecc9c04.tar.gz
qdoc: Correct wrong related non-member links
The summary lists for subclasses were being populated with members of the bases classes of the subclass, which was wrong. This update corrects that problem. More testing is required to ensure that this fix does not introduce regressions. Task-number: QTBUG-76812 Change-Id: Ife7242e99f57c90326d8315ffb3d8175fb9dc8b6 Reviewed-by: Topi Reiniƶ <topi.reinio@qt.io>
-rw-r--r--src/qdoc/sections.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qdoc/sections.cpp b/src/qdoc/sections.cpp
index e0324b347..0aa9f37e9 100644
--- a/src/qdoc/sections.cpp
+++ b/src/qdoc/sections.cpp
@@ -968,7 +968,7 @@ void Sections::buildStdCppClassRefPageSections()
++c;
continue;
}
- distributeNodeInSummaryVector(sv, n);
+ //distributeNodeInSummaryVector(sv, n); Why was this here? mws 03/07/2019
++c;
}
pushBaseClasses(stack, cn);