diff options
author | Martin Smith <msmith@trolltech.com> | 2009-08-05 10:27:44 +0200 |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-08-05 10:27:44 +0200 |
commit | 83c76bb2d1eeca2003720d243ef656aa241a3d49 (patch) | |
tree | 39e67a4ef1989239e2c90abfd8b0515f2e57195c /tools/qdoc3 | |
parent | b008dfbd67176948f6fdf830dc99d23a538a6b9c (diff) | |
download | qt4-tools-83c76bb2d1eeca2003720d243ef656aa241a3d49.tar.gz |
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/qdoc3')
-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 d75af70eee..f8320621e1 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(); } |