summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-06-13 11:13:04 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-06-13 11:13:04 (GMT)
commit0ef84d5a612cff2f140bc01d8e88f77ec50f3de6 (patch)
treecaba71aaf262a096bb7cd7378065f29a35d8c3b9
parent527fa741a67b9bc34ef315ff0ff6f96bae726497 (diff)
downloadDoxygen-0ef84d5a612cff2f140bc01d8e88f77ec50f3de6.zip
Doxygen-0ef84d5a612cff2f140bc01d8e88f77ec50f3de6.tar.gz
Doxygen-0ef84d5a612cff2f140bc01d8e88f77ec50f3de6.tar.bz2
Missing brief descriptions with `\defgroup`
Due to the fact that issue #6945 ended a brief description, all following was put into the detailed description (unless explicit \brief was used). The `\defgroup` should end the current brief description, but first line of the `\defgroup` should be seen as a new brief description. Problem can be seen with in the doxygen documentation in the example in the Grouping part and also with #7053 a small example is given in the comment.
-rw-r--r--src/commentscan.l1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index e75d023..a7dc6d3 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -2359,6 +2359,7 @@ static bool handleDefGroup(const QCString &, const QCStringList &)
{
bool stop=makeStructuralIndicator(Entry::GROUPDOC_SEC);
current->groupDocType = Entry::GROUPDOC_NORMAL;
+ setOutput(OutputBrief);
BEGIN( GroupDocArg1 );
return stop;
}