diff options
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r-- | src/latexgen.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp index 385c7bc..d93b503 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -1142,13 +1142,12 @@ void LatexGenerator::startMemberDoc(const char *clname, t << "}" << endl; } if (Config_getBool("COMPACT_LATEX")) t << "\\paragraph"; else t << "\\subsubsection"; - if (Config_getBool("PDF_HYPERLINKS") && memname) - { - t << "["; - escapeMakeIndexChars(this,t,memname); - //filterTitle(title) - t << "]"; - } + //if (Config_getBool("PDF_HYPERLINKS") && memname) + //{ + // t << "["; + // escapeMakeIndexChars(this,t,memname); + // t << "]"; + //} t << "{\\setlength{\\rightskip}{0pt plus 5cm}"; } |