From f94522a5678652d384fa15bff9b8bfd43f4428ce Mon Sep 17 00:00:00 2001 From: John Ralls Date: Tue, 13 Oct 2015 17:14:51 -0700 Subject: [PATCH] Doxygen: Silence obsolete parameter warnings and suppress private struct names. --- src/doc/doxygen.cfg.in | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/src/doc/doxygen.cfg.in b/src/doc/doxygen.cfg.in index 0907011bbb..3c752a7215 100644 --- a/src/doc/doxygen.cfg.in +++ b/src/doc/doxygen.cfg.in @@ -1460,18 +1460,6 @@ GENERATE_XML = NO XML_OUTPUT = xml -# The XML_SCHEMA tag can be used to specify an XML schema, -# which can be used by a validating XML parser to check the -# syntax of the XML files. - -XML_SCHEMA = - -# The XML_DTD tag can be used to specify an XML DTD, -# which can be used by a validating XML parser to check the -# syntax of the XML files. - -XML_DTD = - # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that @@ -1856,3 +1844,10 @@ GENERATE_LEGEND = YES # the various graphs. DOT_CLEANUP = YES + +# GObject code frequently hides the definition of structs in private headers and +# typedefs them in public declarations. TYPEDEF_HIDES_STRUCT prevents leaking +# the private names into the documentation. + +TYPEDEF_HIDES_STRUCT = YES +