summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2017-09-02 14:33:15 (GMT)
committerGitHub <noreply@github.com>2017-09-02 14:33:15 (GMT)
commitc7c61367d22d07db13b28d2126547088064f9c11 (patch)
tree2b2104ea2310f011aaf6083c98692fd053516309
parent04c9d414e513eb70fa219d8b075bf385f70bbb12 (diff)
parent753c06281f6b2e9172c449157fc9f863063232e3 (diff)
downloadDoxygen-c7c61367d22d07db13b28d2126547088064f9c11.zip
Doxygen-c7c61367d22d07db13b28d2126547088064f9c11.tar.gz
Doxygen-c7c61367d22d07db13b28d2126547088064f9c11.tar.bz2
Merge pull request #596 from albert-github/feature/bug_784281
BugĀ 784281 - Problem RTF output: The class list "classes" within the namespace report is wrong indicated.
-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());