diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-04-30 19:40:09 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-04-30 19:40:09 (GMT) |
commit | a9f41d99f3651cd66850e9020bc3af7cb559306e (patch) | |
tree | 88964bce49d3ab4b0f329d945d43a87b443ed019 /src/latexgen.cpp | |
parent | ebd0447bcc5d3d75214c847954bfda1d2e8c97f5 (diff) | |
download | Doxygen-a9f41d99f3651cd66850e9020bc3af7cb559306e.zip Doxygen-a9f41d99f3651cd66850e9020bc3af7cb559306e.tar.gz Doxygen-a9f41d99f3651cd66850e9020bc3af7cb559306e.tar.bz2 |
Release-1.3-20030430
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r-- | src/latexgen.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp index 4fddb41..4612ed4 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -28,7 +28,7 @@ #include "language.h" #include "version.h" #include "dot.h" -#include "page.h" +#include "pagedef.h" #include "docparser.h" #include "latexdocvisitor.h" @@ -747,15 +747,15 @@ void LatexGenerator::endIndexSection(IndexSections is) { t << "}\n"; PageSDict::Iterator pdi(*Doxygen::exampleSDict); - PageInfo *pi=pdi.toFirst(); - if (pi) + PageDef *pd=pdi.toFirst(); + if (pd) { - t << "\\input{" << pi->getOutputFileBase() << "}\n"; + t << "\\input{" << pd->getOutputFileBase() << "}\n"; } - for (++pdi;(pi=pdi.current());++pdi) + for (++pdi;(pd=pdi.current());++pdi) { if (compactLatex) t << "\\input" ; else t << "\\include"; - t << "{" << pi->getOutputFileBase() << "}\n"; + t << "{" << pd->getOutputFileBase() << "}\n"; } } break; @@ -763,14 +763,14 @@ void LatexGenerator::endIndexSection(IndexSections is) { t << "}\n"; PageSDict::Iterator pdi(*Doxygen::pageSDict); - PageInfo *pi=pdi.toFirst(); + PageDef *pd=pdi.toFirst(); bool first=TRUE; - for (pdi.toFirst();(pi=pdi.current());++pdi) + for (pdi.toFirst();(pd=pdi.current());++pdi) { - if (!pi->getGroupDef() && !pi->isReference()) + if (!pd->getGroupDef() && !pd->isReference()) { if (compactLatex || first) t << "\\input" ; else t << "\\include"; - t << "{" << pi->getOutputFileBase() << "}\n"; + t << "{" << pd->getOutputFileBase() << "}\n"; first=FALSE; } } |