diff options
author | Martin Smith <msmith@trolltech.com> | 2009-06-30 10:11:32 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-06-30 10:12:26 (GMT) |
commit | 5a54b2c4c448ea22adb56bc191303abca34f230b (patch) | |
tree | 1b4941c3d502ed4f737484b3400837344f15631a /tools/qdoc3/cppcodeparser.cpp | |
parent | a823334a1b61f7a8cf73d96cbc4cd0f71bdc3df7 (diff) | |
download | Qt-5a54b2c4c448ea22adb56bc191303abca34f230b.zip Qt-5a54b2c4c448ea22adb56bc191303abca34f230b.tar.gz Qt-5a54b2c4c448ea22adb56bc191303abca34f230b.tar.bz2 |
qdoc: Added more handling of \reimp command
Also fixed a few qdoc error reports.
Task-number: 162182, 222650
Diffstat (limited to 'tools/qdoc3/cppcodeparser.cpp')
-rw-r--r-- | tools/qdoc3/cppcodeparser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/qdoc3/cppcodeparser.cpp b/tools/qdoc3/cppcodeparser.cpp index 792190d..cb6caa9 100644 --- a/tools/qdoc3/cppcodeparser.cpp +++ b/tools/qdoc3/cppcodeparser.cpp @@ -743,7 +743,8 @@ void CppCodeParser::processOtherMetaCommand(const Doc& doc, // Reimplemented functions now reported in separate sections. func->setAccess(Node::Private); func->setStatus(Node::Internal); -#endif +#endif + func->setReimp(true); } else { doc.location().warning(tr("Ignored '\\%1' in %2") |