From 0ef84d5a612cff2f140bc01d8e88f77ec50f3de6 Mon Sep 17 00:00:00 2001 From: albert-github Date: Thu, 13 Jun 2019 13:13:04 +0200 Subject: 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. --- src/commentscan.l | 1 + 1 file changed, 1 insertion(+) 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; } -- cgit v0.12