Skip to content

Commit

Permalink
fix enum brief description in RTF output
Browse files Browse the repository at this point in the history
bug: brief description of enum member is put at the beginning of the
next list item, instead of at the end of the current list item
  • Loading branch information
ppescher committed Mar 25, 2015
1 parent 15b93a2 commit 87429a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/memberlist.cpp
Expand Up @@ -409,7 +409,6 @@ void MemberList::writePlainDeclarations(OutputList &ol,
{
ol.endDoxyAnchor(md->getOutputFileBase(),md->anchor());
}
ol.endMemberItem();
if (!md->briefDescription().isEmpty() && Config_getBool("BRIEF_MEMBER_DESC"))
{
DocRoot *rootNode = validatingParseDoc(
Expand Down Expand Up @@ -437,6 +436,7 @@ void MemberList::writePlainDeclarations(OutputList &ol,
delete rootNode;
}
ol.endMemberDeclaration(md->anchor(),inheritId);
ol.endMemberItem();
}
md->warnIfUndocumented();
break;
Expand Down

0 comments on commit 87429a2

Please sign in to comment.