diff options
author | Martin Smith <msmith@trolltech.com> | 2009-05-29 11:43:48 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-05-29 11:44:19 (GMT) |
commit | b34d9b67fbdc6bf74f7ada972dd9b35153f47202 (patch) | |
tree | 545bf7e3f466731b30ead41d20dab8b378183fff /tools/qdoc3/codeparser.h | |
parent | fe3b9390872bfb03a94be8c17cdc0ce6946369bb (diff) | |
download | Qt-b34d9b67fbdc6bf74f7ada972dd9b35153f47202.zip Qt-b34d9b67fbdc6bf74f7ada972dd9b35153f47202.tar.gz Qt-b34d9b67fbdc6bf74f7ada972dd9b35153f47202.tar.bz2 |
Added the -showinternal flag to qdoc.
When you set -showinternal on the command line, qdoc will include
everything marked \internal in the documentation. This flag is not
very useful at the moment for two reasons: (1) It generates hundreds
of qdoc errors because most of the things marked with \internal don't
have any documentation anyway, or the documentation has other errors
in it that weren't being detected because of the \internal. (2) There
is a bus error toward the end, which I haven't tracked down yet. For
now, use -showinternal at your own risk.
Diffstat (limited to 'tools/qdoc3/codeparser.h')
-rw-r--r-- | tools/qdoc3/codeparser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/qdoc3/codeparser.h b/tools/qdoc3/codeparser.h index 019e806..0152b9c 100644 --- a/tools/qdoc3/codeparser.h +++ b/tools/qdoc3/codeparser.h @@ -87,6 +87,7 @@ class CodeParser private: static QList<CodeParser *> parsers; + static bool showInternal; }; QT_END_NAMESPACE |