summaryrefslogtreecommitdiffstats
path: root/src/latexgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-02-08 18:36:07 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-02-08 18:36:07 (GMT)
commit19119105076ca1b361b11b49df61050879c1e054 (patch)
tree918babf3afc522698cc5ff63bd28ff5f8897964a /src/latexgen.cpp
parentea50604595d368f3b9a63a3dbfe55d984986abb0 (diff)
downloadDoxygen-19119105076ca1b361b11b49df61050879c1e054.zip
Doxygen-19119105076ca1b361b11b49df61050879c1e054.tar.gz
Doxygen-19119105076ca1b361b11b49df61050879c1e054.tar.bz2
mods for doxygen-1.0.0
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r--src/latexgen.cpp12
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)
{