diff options
Diffstat (limited to 'src/rtfgen.h')
-rw-r--r-- | src/rtfgen.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rtfgen.h b/src/rtfgen.h index 0179dd5..2f1355a 100644 --- a/src/rtfgen.h +++ b/src/rtfgen.h @@ -163,9 +163,11 @@ class RTFGenerator : public OutputGenerator void startMemberDescription(); void endMemberDescription(); void startDescList(); + void endDescList(); + void startParamList() { startDescList(); } + void endParamList() { endDescList(); } void endDescTitle(); void writeDescItem(); - void endDescList(); void startSection(const char *,const char *,bool); void endSection(const char *,bool); void writeSectionRef(const char *,const char *,const char *,const char *); |