diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2009-05-22 11:07:08 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2009-05-22 11:07:08 (GMT) |
commit | 7a3de4c3c8aac25c38b6e93bb0927de40cd1c650 (patch) | |
tree | 9568dad93df55e8726251e5bdb1f2d8c00bdde93 /src/latexgen.h | |
parent | c34e05f1d2d21630290f758aafe6d151825d0ce8 (diff) | |
download | Doxygen-7a3de4c3c8aac25c38b6e93bb0927de40cd1c650.zip Doxygen-7a3de4c3c8aac25c38b6e93bb0927de40cd1c650.tar.gz Doxygen-7a3de4c3c8aac25c38b6e93bb0927de40cd1c650.tar.bz2 |
Release-1.5.9-20090522
Diffstat (limited to 'src/latexgen.h')
-rw-r--r-- | src/latexgen.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/latexgen.h b/src/latexgen.h index 00e52f8..2967c74 100644 --- a/src/latexgen.h +++ b/src/latexgen.h @@ -65,6 +65,8 @@ class LatexGenerator : public OutputGenerator void startParagraph(); void endParagraph(); void writeString(const char *text); + void startIndexListItem() {} + void endIndexListItem() {} void startIndexList() { t << "\\begin{CompactList}" << endl; } void endIndexList() { t << "\\end{CompactList}" << endl; } void startIndexKey(); @@ -90,7 +92,8 @@ class LatexGenerator : public OutputGenerator void endTypewriter() { t << "}"; } void startGroupHeader(); void endGroupHeader(); - void writeListItem() { t << "\\item " << endl; } + void startItemListItem() { t << "\\item " << endl; } + void endItemListItem() {} void startMemberSections() {} void endMemberSections() {} @@ -161,7 +164,8 @@ class LatexGenerator : public OutputGenerator void endSimpleSect(); void startParamList(ParamListTypes,const char *title); void endParamList(); - void writeDescItem() { t << "\\par" << endl; } + void startDescForItem() { t << "\\par" << endl; } + void endDescForItem() {} void startSection(const char *,const char *,SectionInfo::SectionType); void endSection(const char *,SectionInfo::SectionType); void addIndexItem(const char *,const char *); |