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/classdef.cpp | |
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/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 14 |
1 files changed, 0 insertions, 14 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()); |