From 753c06281f6b2e9172c449157fc9f863063232e3 Mon Sep 17 00:00:00 2001 From: albert-github Date: Sat, 26 Aug 2017 18:50:00 +0200 Subject: =?UTF-8?q?Bug=C2=A0784281=20-=20Problem=20RTF=20output:=20The=20c?= =?UTF-8?q?lass=20list=20"classes"=20within=20the=20namespace=20report=20i?= =?UTF-8?q?s=20wrong=20indicated.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added extra paragraph end after short description just for classes. --- src/classdef.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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()); -- cgit v0.12