diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-04-02 19:17:27 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-04-02 19:17:27 (GMT) |
commit | f5e70723391bacc2d68c19d367ab414e70f786b4 (patch) | |
tree | b0d1ded11bbbfe184346d54087f886d6aeab2592 | |
parent | 32093bcca82c7d3a4df4670f52340033e9f16b62 (diff) | |
download | Doxygen-f5e70723391bacc2d68c19d367ab414e70f786b4.zip Doxygen-f5e70723391bacc2d68c19d367ab414e70f786b4.tar.gz Doxygen-f5e70723391bacc2d68c19d367ab414e70f786b4.tar.bz2 |
Added function arguments to the LaTeX toc
-rw-r--r-- | qtools/Doxyfile | 2 | ||||
-rw-r--r-- | src/memberdef.cpp | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/qtools/Doxyfile b/qtools/Doxyfile index 644eee5..41f2ad9 100644 --- a/qtools/Doxyfile +++ b/qtools/Doxyfile @@ -196,7 +196,7 @@ EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- -GENERATE_LATEX = NO +GENERATE_LATEX = YES LATEX_OUTPUT = LATEX_CMD_NAME = latex MAKEINDEX_CMD_NAME = makeindex diff --git a/src/memberdef.cpp b/src/memberdef.cpp index f27a579..5061ed8 100644 --- a/src/memberdef.cpp +++ b/src/memberdef.cpp @@ -2591,6 +2591,10 @@ void MemberDef::writeDocumentation(MemberList *ml,OutputList &ol, ldef=ldef.mid(2); } } + else if (isFunction()) + { + title+=argsString(); + } int i=0,l; static QRegExp r("@[0-9]+"); |