diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2012-11-18 21:43:28 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2012-11-18 21:43:28 (GMT) |
commit | fee4053bd3dd075a2dd2cba4da8166ec5307eadd (patch) | |
tree | 94365b932426de715b3a479094b7056e0c4f878b /src/latexgen.cpp | |
parent | ceb4115c7b941039411e1793e01239610ff112a2 (diff) | |
download | Doxygen-fee4053bd3dd075a2dd2cba4da8166ec5307eadd.zip Doxygen-fee4053bd3dd075a2dd2cba4da8166ec5307eadd.tar.gz Doxygen-fee4053bd3dd075a2dd2cba4da8166ec5307eadd.tar.bz2 |
Release-1.8.2-20121118
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r-- | src/latexgen.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp index d57764e..8a7555d 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -17,7 +17,6 @@ #include <stdlib.h> -#include "qtbc.h" #include <qdir.h> #include "latexgen.h" #include "config.h" @@ -33,6 +32,10 @@ #include "latexdocvisitor.h" #include "dirdef.h" #include "cite.h" +#include "groupdef.h" +#include "classlist.h" +#include "namespacedef.h" +#include "filename.h" //static QCString filterTitle(const char *s) //{ @@ -794,7 +797,7 @@ static void writeDefaultStyleSheetPart3(FTextStream &t) //" \\arrayrulecolor{gray}%\n" " \\setlength{\\tabcolsep}{0.01\\textwidth}%\n" " \\begin{longtable}{|>{\\raggedleft\\hspace{0pt}}p{0.25\\textwidth}|%\n" - " p{0.77\\textwidth}|}%\n" + " p{0.705\\textwidth}|}%\n" " \\hline%\n" "}{%\n" " \\end{longtable}%\n" @@ -811,7 +814,7 @@ static void writeDefaultStyleSheetPart3(FTextStream &t) " \\arrayrulecolor{gray}%\n" " \\setlength{\\tabcolsep}{0.01\\textwidth}%\n" " \\begin{longtable}{|>{\\raggedleft\\hspace{0pt}}p{0.25\\textwidth}|%\n" - " p{0.77\\textwidth}|}%\n" + " p{0.705\\textwidth}|}%\n" " \\hline%\n" "}{%\n" " \\end{longtable}%\n" @@ -828,7 +831,7 @@ static void writeDefaultStyleSheetPart3(FTextStream &t) " \\arrayrulecolor{gray}%\n" " \\setlength{\\tabcolsep}{0.01\\textwidth}%\n" " \\begin{longtable}{|>{\\raggedleft\\hspace{0pt}}p{0.25\\textwidth}|%\n" - " p{0.77\\textwidth}|}%\n" + " p{0.705\\textwidth}|}%\n" " \\hline%\n" "}{%\n" " \\end{longtable}%\n" @@ -1972,7 +1975,7 @@ void LatexGenerator::codify(const char *str) //char cs[5]; int spacesToNextTabStop; static int tabSize = Config_getInt("TAB_SIZE"); - const int maxLineLen = 80; + const int maxLineLen = 108; QCString result(4*maxLineLen+1); // worst case for 1 line of 4-byte chars int i; while ((c=*p)) |