diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-06-10 08:52:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-10 08:52:57 (GMT) |
commit | a09e0d3486bd4baccfc3019b13c7087dc96b13ce (patch) | |
tree | 8caea04c88ad4734f44b40712d244d5fe8354873 /src | |
parent | 72d1e4fb88c411a93140811d02c8bb9e90aae808 (diff) | |
parent | be4fb2753c2f028a53d657a7920267a4191cd566 (diff) | |
download | Doxygen-a09e0d3486bd4baccfc3019b13c7087dc96b13ce.zip Doxygen-a09e0d3486bd4baccfc3019b13c7087dc96b13ce.tar.gz Doxygen-a09e0d3486bd4baccfc3019b13c7087dc96b13ce.tar.bz2 |
Merge pull request #746 from albert-github/feature/bug_782754
Bug 782754 - rtf generation
Diffstat (limited to 'src')
-rw-r--r-- | src/classdef.cpp | 14 | ||||
-rw-r--r-- | src/rtfgen.cpp | 6 |
2 files changed, 3 insertions, 17 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index f810154..4977760 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -1935,21 +1935,7 @@ void ClassDef::writeDeclarationLink(OutputList &ol,bool &found,const char *heade if (rootNode && !rootNode->isEmpty()) { ol.startMemberDescription(anchor()); - - ol.pushGeneratorState(); - ol.disableAll(); - ol.enable(OutputGenerator::RTF); - ol.writeString("{"); - ol.popGeneratorState(); - ol.writeDoc(rootNode,this,0); - - ol.pushGeneratorState(); - ol.disableAll(); - ol.enable(OutputGenerator::RTF); - ol.writeString("\\par}"); - ol.popGeneratorState(); - if (isLinkableInProject()) { writeMoreLink(ol,anchor()); diff --git a/src/rtfgen.cpp b/src/rtfgen.cpp index fc6fdfc..eb9be52 100644 --- a/src/rtfgen.cpp +++ b/src/rtfgen.cpp @@ -1639,11 +1639,11 @@ void RTFGenerator::endMemberDescription() { DBG_RTF(t << "{\\comment (endMemberDescription)}" << endl) endEmphasis(); - newParagraph(); + //newParagraph(); decrementIndentLevel(); - //t << "\\par"; + t << "\\par"; t << "}" << endl; - //m_omitParagraph = TRUE; + m_omitParagraph = TRUE; } void RTFGenerator::startDescList(SectionTypes) |