diff options
author | Martin Smith <msmith@trolltech.com> | 2009-08-05 08:27:44 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-08-05 08:27:44 (GMT) |
commit | 83c76bb2d1eeca2003720d243ef656aa241a3d49 (patch) | |
tree | 39e67a4ef1989239e2c90abfd8b0515f2e57195c /tools | |
parent | b008dfbd67176948f6fdf830dc99d23a538a6b9c (diff) | |
download | Qt-83c76bb2d1eeca2003720d243ef656aa241a3d49.zip Qt-83c76bb2d1eeca2003720d243ef656aa241a3d49.tar.gz Qt-83c76bb2d1eeca2003720d243ef656aa241a3d49.tar.bz2 |
qdoc: Removed the "No such group" qdoc error.
This error was printed if you used a \ingroup xxx,
but there was no \group xxx anywhere. Now we will
stop using the \group command, but we will retain
the \ingroup command for use with the \annotatedlist
command.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/qdoc3/tree.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/qdoc3/tree.cpp b/tools/qdoc3/tree.cpp index d75af70..f832062 100644 --- a/tools/qdoc3/tree.cpp +++ b/tools/qdoc3/tree.cpp @@ -575,10 +575,12 @@ void Tree::resolveGroups() if (fake && fake->subType() == Node::Group) { fake->addGroupMember(i.value()); } +#if 0 else { if (prevGroup != i.key()) i.value()->doc().location().warning(tr("No such group '%1'").arg(i.key())); } +#endif prevGroup = i.key(); } |