summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2017-08-26 16:50:00 (GMT)
committeralbert-github <albert.tests@gmail.com>2017-08-26 16:50:00 (GMT)
commit753c06281f6b2e9172c449157fc9f863063232e3 (patch)
tree1157817ccd7ad56a8dcaadf2f06b9c6198acf81f
parent76d2c2f71602c7797ad8fdb7b22cedc37f998476 (diff)
downloadDoxygen-753c06281f6b2e9172c449157fc9f863063232e3.zip
Doxygen-753c06281f6b2e9172c449157fc9f863063232e3.tar.gz
Doxygen-753c06281f6b2e9172c449157fc9f863063232e3.tar.bz2
BugĀ 784281 - Problem RTF output: The class list "classes" within the namespace report is wrong indicated.
Added extra paragraph end after short description just for classes.
-rw-r--r--src/classdef.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp
index 111d59b..7ec4bb4 100644
--- a/src/classdef.cpp
+++ b/src/classdef.cpp
@@ -1935,7 +1935,21 @@ 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());