diff options
Diffstat (limited to 'src/mangen.h')
-rw-r--r-- | src/mangen.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mangen.h b/src/mangen.h index 2b95de9..f3d2a2b 100644 --- a/src/mangen.h +++ b/src/mangen.h @@ -152,8 +152,10 @@ class ManGenerator : public OutputGenerator void endSubscript() { t << "\\*>"; firstCol=FALSE; } void startSuperscript() { t << "\\*{"; firstCol=FALSE; } void endSuperscript() { t << "\\*}"; firstCol=FALSE; } - void startTable(int) {} - void endTable() {} + void startTable(bool,int) {} + void endTable(bool) {} + void startCaption() {} + void endCaption() {} void nextTableRow() {} void endTableRow() {} void nextTableColumn() {} |