diff options
author | albert-github <albert.tests@gmail.com> | 2018-05-28 13:10:28 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-05-28 13:10:28 (GMT) |
commit | be4fb2753c2f028a53d657a7920267a4191cd566 (patch) | |
tree | f5fcf4aac7ec7e3dd70892bda92be5c6051725b3 /src/classdef.cpp | |
parent | 63696c08425fc1662c5e76280e3cc74fb3769d80 (diff) | |
download | Doxygen-be4fb2753c2f028a53d657a7920267a4191cd566.zip Doxygen-be4fb2753c2f028a53d657a7920267a4191cd566.tar.gz Doxygen-be4fb2753c2f028a53d657a7920267a4191cd566.tar.bz2 |
Bug 782754 - rtf generation
Looks like problem has been introduced with the fix for bug 445105 (release 1.5.3), in this case the \par is necessary.
The fix for bug 741547 (pull request #596) is related to this problem and the fix here is not necessary with this fix.
Related to bug 778525, here 2 problems occur and the mangling is solved with this patch.
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 4ce48a7..45afd90 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()); |