diff options
Diffstat (limited to 'src/latexgen.h')
-rw-r--r-- | src/latexgen.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/latexgen.h b/src/latexgen.h index 802542a..dccabdf 100644 --- a/src/latexgen.h +++ b/src/latexgen.h @@ -65,8 +65,8 @@ class LatexGenerator : public OutputGenerator void endIndexList() { t << "\\end{CompactList}" << endl; } void startIndexKey(); void endIndexKey(); - void startIndexValue(); - void endIndexValue(const char *); + void startIndexValue(bool); + void endIndexValue(const char *,bool); void startItemList() { t << "\\begin{CompactItemize}" << endl; } void endItemList() { t << "\\end{CompactItemize}" << endl; } void startEnumList() { t << "\\begin{enumerate}" << endl; } |