diff options
Diffstat (limited to 'src/rtfgen.cpp')
-rw-r--r-- | src/rtfgen.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/rtfgen.cpp b/src/rtfgen.cpp index 1bdeb55..c3b715c 100644 --- a/src/rtfgen.cpp +++ b/src/rtfgen.cpp @@ -2701,6 +2701,16 @@ void RTFGenerator::endParameterType() t << " "; } +void RTFGenerator::exceptionEntry(const char* prefix,bool closeBracket) +{ + DBG_RTF(t << "{\\comment (exceptionEntry)}" << endl) + if (prefix) + t << " " << prefix; + else if (closeBracket) + t << ")"; + t << " "; +} + void RTFGenerator::writeDoc(DocNode *n,Definition *ctx,MemberDef *) { RTFDocVisitor *visitor = new RTFDocVisitor(t,*this,ctx?ctx->getDefFileExtension():QCString("")); |