From a76e0b66ec24a1377ac7d21a61a343b25c89597b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 9 Feb 2014 13:40:36 +0000 Subject: [PATCH] Extract private methods when generating documentation too. The only private methods appearing in interface/wx/*.h files are meant to be documented, so do extract them. This should fix wxThread::OnExit() not appearing in the generated documentation, for example. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75858 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/doxygen/Doxyfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/doxygen/Doxyfile b/docs/doxygen/Doxyfile index ef39fdba98..206dd45b18 100644 --- a/docs/doxygen/Doxyfile +++ b/docs/doxygen/Doxyfile @@ -230,7 +230,7 @@ ALIASES += buildwith{2}="Build Note: You may need to build the wxWidgets #--------------------------------------------------------------------------- EXTRACT_ALL = YES # Default: NO -EXTRACT_PRIVATE = NO +EXTRACT_PRIVATE = YES # Default: NO EXTRACT_PACKAGE = NO EXTRACT_STATIC = YES # Default: NO EXTRACT_LOCAL_CLASSES = YES