diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2011-10-27 18:00:16 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2011-10-27 18:00:16 (GMT) |
commit | 8491e9fbd06ef8a8f1cc542a524c673d7781d4b6 (patch) | |
tree | 7c1bfd20df6135fa1aac607ebe1a46d31d7f4b65 /src/latexgen.cpp | |
parent | 3af6ff4c3d2748b45f468695a3db9f26eef4e630 (diff) | |
download | Doxygen-8491e9fbd06ef8a8f1cc542a524c673d7781d4b6.zip Doxygen-8491e9fbd06ef8a8f1cc542a524c673d7781d4b6.tar.gz Doxygen-8491e9fbd06ef8a8f1cc542a524c673d7781d4b6.tar.bz2 |
Release-1.7.5.1-20111027
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r-- | src/latexgen.cpp | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp index c3b9c6f..fad1d01 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -701,6 +701,7 @@ static void writeDefaultStyleSheetPart3(FTextStream &t) " \\begin{longtable}{|>{\\raggedleft\\hspace{0pt}}p{0.15\\textwidth}|%\n" " p{0.15\\textwidth}|%\n" " p{0.635\\textwidth}|}%\n" + //"\\hline{\\sf\\textbf{Type}} & {\\sf\\textbf{Name}} & {\\sf\\textbf{Description}}\\endhead%\n" " \\hline%\n" "}{%\n" " \\end{longtable}%\n" @@ -1772,7 +1773,7 @@ void LatexGenerator::startDoxyAnchor(const char *fName,const char *, t << "\\hypertarget{"; if (fName) t << stripPath(fName); if (anchor) t << "_" << anchor; - t << "}{" << endl; + t << "}{"; } } @@ -1782,7 +1783,7 @@ void LatexGenerator::endDoxyAnchor(const char *fName,const char *anchor) static bool usePDFLatex = Config_getBool("USE_PDFLATEX"); if (usePDFLatex && pdfHyperlinks) { - t << "}" << endl; + t << "}"; } t << "\\label{"; if (fName) t << fName; @@ -2112,19 +2113,23 @@ void LatexGenerator::endMemberList() void LatexGenerator::startMemberGroupHeader(bool hasHeader) { if (hasHeader) t << "\\begin{Indent}"; - if (Config_getBool("COMPACT_LATEX")) - { - t << "\\subparagraph*{"; - } - else - { - t << "\\paragraph*{"; - } + t << "{\\bf "; + // changed back to rev 756 due to bug 660501 + //if (Config_getBool("COMPACT_LATEX")) + //{ + // t << "\\subparagraph*{"; + //} + //else + //{ + // t << "\\paragraph*{"; + //} } void LatexGenerator::endMemberGroupHeader() { - t << "}" << endl; + // changed back to rev 756 due to bug 660501 + t << "}\\par" << endl; + //t << "}" << endl; } void LatexGenerator::startMemberGroupDocs() |