diff options
author | mueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-02-08 18:36:07 (GMT) |
---|---|---|
committer | mueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-02-08 18:36:07 (GMT) |
commit | 6e9c313b87a0daa86ca108e93d67fc4c9e5bec68 (patch) | |
tree | 918babf3afc522698cc5ff63bd28ff5f8897964a /src/latexgen.cpp | |
parent | 5620fa248663fa5ee8b2d8a26d773df60c2a4994 (diff) | |
download | Doxygen-6e9c313b87a0daa86ca108e93d67fc4c9e5bec68.zip Doxygen-6e9c313b87a0daa86ca108e93d67fc4c9e5bec68.tar.gz Doxygen-6e9c313b87a0daa86ca108e93d67fc4c9e5bec68.tar.bz2 |
mods for doxygen-1.0.0
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r-- | src/latexgen.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp index 7cf2c26..18f129a 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -217,7 +217,8 @@ void LatexGenerator::startIndexSection(IndexSections is) } else { - t << fileToString(Config::latexHeaderFile); + QCString header = fileToString(Config::latexHeaderFile); + t << substituteKeywords(header,0); } } break; @@ -657,7 +658,9 @@ void LatexGenerator::writeIndexItem(const char *ref,const char *fn, void LatexGenerator::writeHtmlLink(const char *url,const char *text) { + t << "{\\tt "; docify(text); + t << "}"; if (url) { // t << " {\\tt ("; @@ -666,6 +669,13 @@ void LatexGenerator::writeHtmlLink(const char *url,const char *text) } } +void LatexGenerator::writeMailLink(const char *url) +{ + t << "{\\tt "; + docify(url); + t << "}"; +} + void LatexGenerator::writeStartAnnoItem(const char *,const char *, const char *path,const char *name) { |