diff options
author | ppescher <p.messina@robotechsrl.com> | 2015-03-25 17:33:53 (GMT) |
---|---|---|
committer | ppescher <p.messina@robotechsrl.com> | 2015-03-25 17:33:53 (GMT) |
commit | 87429a2609b822d2b08ec17fb2a20464a5043c9e (patch) | |
tree | ae58542f98e85b680bc3679293327be29efd7742 /src/memberlist.cpp | |
parent | 15b93a26e99289cf0ac929e8a8fd64224f808460 (diff) | |
download | Doxygen-87429a2609b822d2b08ec17fb2a20464a5043c9e.zip Doxygen-87429a2609b822d2b08ec17fb2a20464a5043c9e.tar.gz Doxygen-87429a2609b822d2b08ec17fb2a20464a5043c9e.tar.bz2 |
fix enum brief description in RTF output
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
Diffstat (limited to 'src/memberlist.cpp')
-rw-r--r-- | src/memberlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memberlist.cpp b/src/memberlist.cpp index fae285f..64fe44a 100644 --- a/src/memberlist.cpp +++ b/src/memberlist.cpp @@ -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( @@ -437,6 +436,7 @@ void MemberList::writePlainDeclarations(OutputList &ol, delete rootNode; } ol.endMemberDeclaration(md->anchor(),inheritId); + ol.endMemberItem(); } md->warnIfUndocumented(); break; |