summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3/cppcodeparser.cpp
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2009-06-26 11:51:51 (GMT)
committerMartin Smith <msmith@trolltech.com>2009-06-26 11:53:10 (GMT)
commit02c22119cf62873b785f9ae1628d530bcafb9ec1 (patch)
tree5379f42f4f2d944a8ba2d268677a8d32ec805b33 /tools/qdoc3/cppcodeparser.cpp
parente1a0c7c01d494f7db194e3b5245368ba1d95c6c8 (diff)
downloadQt-02c22119cf62873b785f9ae1628d530bcafb9ec1.zip
Qt-02c22119cf62873b785f9ae1628d530bcafb9ec1.tar.gz
Qt-02c22119cf62873b785f9ae1628d530bcafb9ec1.tar.bz2
qdoc: Changed handling of reimplemented functions.
There are now sections for "Reimplemented Public Functions" and "Reimplemented Protected Functions" in the summaries for each class. This isn't complete yet. It introduces a lot of qdoc warnings about undocumented parameters, but I will fix those. There is more to be done here but i want to get some feedback already. Task-number: 162182, 222650
Diffstat (limited to 'tools/qdoc3/cppcodeparser.cpp')
-rw-r--r--tools/qdoc3/cppcodeparser.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/qdoc3/cppcodeparser.cpp b/tools/qdoc3/cppcodeparser.cpp
index a7d6ae7..792190d 100644
--- a/tools/qdoc3/cppcodeparser.cpp
+++ b/tools/qdoc3/cppcodeparser.cpp
@@ -739,8 +739,11 @@ void CppCodeParser::processOtherMetaCommand(const Doc& doc,
// Note: Setting the access to Private hides the documentation,
// but setting the status to Internal makes the node available
// in the XML output when the WebXMLGenerator is used.
+#if 0
+ // Reimplemented functions now reported in separate sections.
func->setAccess(Node::Private);
func->setStatus(Node::Internal);
+#endif
}
else {
doc.location().warning(tr("Ignored '\\%1' in %2")