diff options
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 14 |
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()); |