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 From 268721df2152dc5909498391867cdc07cce08b10 Mon Sep 17 00:00:00 2001 From: albert-github Date: Thu, 13 Jun 2019 13:21:33 +0200 Subject: Missing brief descriptions with `\defgroup` Test 19 was incorrect, didn't show group description either (see make tests TEST_FLAGS="--keep --xhtml --id=19" --- testing/019/group__g1.xml | 2 +- testing/019/group__g2.xml | 2 +- testing/019/group__g3.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/019/group__g1.xml b/testing/019/group__g1.xml index d9ea16d..d6807ca 100644 --- a/testing/019/group__g1.xml +++ b/testing/019/group__g1.xml @@ -20,9 +20,9 @@ + Text for first group. - Text for first group. diff --git a/testing/019/group__g2.xml b/testing/019/group__g2.xml index 9b1fc83..3514d89 100644 --- a/testing/019/group__g2.xml +++ b/testing/019/group__g2.xml @@ -21,9 +21,9 @@ + Text for second group. - Text for second group. diff --git a/testing/019/group__g3.xml b/testing/019/group__g3.xml index d9137b0..0f21232 100644 --- a/testing/019/group__g3.xml +++ b/testing/019/group__g3.xml @@ -34,9 +34,9 @@ + Text for third group. - Text for third group. -- cgit v0.12