diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-12-28 18:24:07 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-12-28 18:24:07 (GMT) |
commit | 1b402f49a0638dd0eec2a123462862c6d4c4084d (patch) | |
tree | 9c039804927fdd559d2c23364a1f34dbcd7eb61b /src/memberlist.cpp | |
parent | 0b4b2d76e4cc8fcb85d9b3ad7252e676e5a1d784 (diff) | |
download | Doxygen-1b402f49a0638dd0eec2a123462862c6d4c4084d.zip Doxygen-1b402f49a0638dd0eec2a123462862c6d4c4084d.tar.gz Doxygen-1b402f49a0638dd0eec2a123462862c6d4c4084d.tar.bz2 |
Bug 758132 - Brief description of non documented functions (fixes)
Diffstat (limited to 'src/memberlist.cpp')
-rw-r--r-- | src/memberlist.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/memberlist.cpp b/src/memberlist.cpp index b253682..f58ade4 100644 --- a/src/memberlist.cpp +++ b/src/memberlist.cpp @@ -324,6 +324,7 @@ void MemberList::writePlainDeclarations(OutputList &ol, ) { //printf("----- writePlainDeclaration() ----\n"); + static bool hideUndocMembers = Config_getBool("HIDE_UNDOC_MEMBERS"); countDecMembers(); if (numDecMembers()==0) { @@ -387,8 +388,7 @@ void MemberList::writePlainDeclarations(OutputList &ol, } // if this is an anonymous enum and there are variables of this // enum type (i.e. enumVars>0), then we do not show the enum here. - if ((enumVars==0) // show enum here - && md->hasDocumentation()) + if (enumVars==0 && !hideUndocMembers) // show enum here { //printf("Enum!!\n"); if (first) |