diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/htmlgen.cpp | 10 | ||||
-rw-r--r-- | src/htmlgen.h | 2 | ||||
-rw-r--r-- | src/latexgen.cpp | 18 | ||||
-rw-r--r-- | src/latexgen.h | 2 | ||||
-rw-r--r-- | src/memberdef.cpp | 2 |
5 files changed, 19 insertions, 15 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 069cafa..fff9693 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -1551,10 +1551,14 @@ void HtmlGenerator::endMemberDocList() DBG_HTML(t << "<!-- endMemberDocList -->" << endl;) } -void HtmlGenerator::startMemberDoc(const char *,const char *,const char *,const char *,bool) -{ +void HtmlGenerator::startMemberDoc( const char *clName, const char *memName, + const char *anchor, const char *title, bool showInline) +{ DBG_HTML(t << "<!-- startMemberDoc -->" << endl;) - + t << "\n<h2 class=\"memtitle\">" << title << " " + << "<a href=\"#" << anchor << "\" class=\"permantlink\"" "title=\"Permalink to this headline\">♾</a>" + << "</h2>" + << endl; t << "\n<div class=\"memitem\">" << endl; t << "<div class=\"memproto\">" << endl; } diff --git a/src/htmlgen.h b/src/htmlgen.h index 924d04f..e068c6e 100644 --- a/src/htmlgen.h +++ b/src/htmlgen.h @@ -225,7 +225,7 @@ class HtmlGenerator : public OutputGenerator void endDescForItem() { t << "</dd>\n"; } void lineBreak(const char *style); void writeChar(char c); - void startMemberDoc(const char *,const char *,const char *,const char *,bool); + void startMemberDoc(const char *clName, const char *memName, const char *anchor, const char *title, bool showInline); void endMemberDoc(bool); void startDoxyAnchor(const char *fName,const char *manName, const char *anchor,const char *name, diff --git a/src/latexgen.cpp b/src/latexgen.cpp index 53fc9db..20b4fb1 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -1562,7 +1562,7 @@ void LatexGenerator::startMemberDoc(const char *clname, if (compactLatex) level++; t << "\\" << levelLab[level]; - t << "[{"; + t << "{"; if (pdfHyperlinks) { t << "\\texorpdfstring{"; @@ -1572,9 +1572,9 @@ void LatexGenerator::startMemberDoc(const char *clname, { t << "}{" << latexEscapePDFString(title) << "}"; } - t << "}]"; - t << "{\\setlength{\\rightskip}{0pt plus 5cm}"; - disableLinks=TRUE; + t << "}"; + t << "\n{\\ttfamily "; + //disableLinks=TRUE; } void LatexGenerator::endMemberDoc(bool) @@ -1588,10 +1588,6 @@ 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) @@ -1604,7 +1600,11 @@ void LatexGenerator::endDoxyAnchor(const char *fName,const char *anchor) t << "\\label{"; if (fName) t << stripPath(fName); if (anchor) t << "_" << anchor; - t << "}" << endl; + t << "} " << endl; +} + +void LatexGenerator::endDoxyAnchor(const char *fName,const char *anchor) +{ } void LatexGenerator::writeAnchor(const char *fName,const char *name) diff --git a/src/latexgen.h b/src/latexgen.h index 84382a7..699afbf 100644 --- a/src/latexgen.h +++ b/src/latexgen.h @@ -293,7 +293,7 @@ class LatexGenerator : public OutputGenerator void endTextBlock(bool) {} void startMemberDocPrefixItem() {} - void endMemberDocPrefixItem() {} + void endMemberDocPrefixItem() { t << "\\\\" << endl; } void startMemberDocName(bool) {} void endMemberDocName() {} void startParameterType(bool,const char *); diff --git a/src/memberdef.cpp b/src/memberdef.cpp index 2c88898..ddd2584 100644 --- a/src/memberdef.cpp +++ b/src/memberdef.cpp @@ -2608,7 +2608,7 @@ void MemberDef::writeDocumentation(MemberList *ml,OutputList &ol, } else if (isFunction()) { - title+=argsString(); + title += "()"; } int i=0,l; static QRegExp r("@[0-9]+"); |