diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-06-29 17:45:55 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-07-12 11:00:45 (GMT) |
commit | 647b6ac8669cd8ba1e8c60eeb3c2de961c7d6a1b (patch) | |
tree | 47030a5aefd5c239cf466dbee23cc877e5b54ea1 /src/latexgen.cpp | |
parent | 942efcb758977fe95fafc473813528085b56e4ee (diff) | |
download | Doxygen-647b6ac8669cd8ba1e8c60eeb3c2de961c7d6a1b.zip Doxygen-647b6ac8669cd8ba1e8c60eeb3c2de961c7d6a1b.tar.gz Doxygen-647b6ac8669cd8ba1e8c60eeb3c2de961c7d6a1b.tar.bz2 |
Using tabu package for LaTeX tables
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r-- | src/latexgen.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp index 042dd7c..30e28ec 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -1422,6 +1422,10 @@ void LatexGenerator::startDoxyAnchor(const char *fName,const char *, const char *anchor, const char *, const char *) { +} + +void LatexGenerator::endDoxyAnchor(const char *fName,const char *anchor) +{ static bool pdfHyperlinks = Config_getBool("PDF_HYPERLINKS"); static bool usePDFLatex = Config_getBool("USE_PDFLATEX"); if (usePDFLatex && pdfHyperlinks) @@ -1431,10 +1435,6 @@ void LatexGenerator::startDoxyAnchor(const char *fName,const char *, if (anchor) t << "_" << anchor; t << "}{}"; } -} - -void LatexGenerator::endDoxyAnchor(const char *fName,const char *anchor) -{ t << "\\label{"; if (fName) t << stripPath(fName); if (anchor) t << "_" << anchor; |