Skip to content

Commit

Permalink
Fix nesting of XML tag "literallayout" for docbook output of enums.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hauke Wintjen committed May 27, 2015
1 parent 796d658 commit 3abac31
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/docbookgen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -483,13 +483,13 @@ static void generateDocbookForMember(MemberDef *md,FTextStream &t,Definition *de
cnt++;
}
t << endl << "}";
t << "</literallayout>" << endl;
if (md->briefDescription())
{
t << "<para><emphasis>";
writeDocbookString(t,md->briefDescription());
t << "</emphasis></para>" << endl;
}
}
t << "</literallayout>" << endl;
if (md->briefDescription())
{
t << "<para><emphasis>";
writeDocbookString(t,md->briefDescription());
t << "</emphasis></para>" << endl;
}
}
else if (md->memberType()==MemberType_Define)
Expand Down

0 comments on commit 3abac31

Please sign in to comment.