diff options
author | albert-github <albert.tests@gmail.com> | 2015-11-22 18:22:28 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2015-11-22 18:22:28 (GMT) |
commit | 7a2164d252a0cb5410ab13b0ca1611a8e94e3c99 (patch) | |
tree | 6b1f876c934f088d1601ff2e179a61998fecd35e /src/dirdef.cpp | |
parent | 40897d59939828ea07c591d83e9c2b4d2a00f43a (diff) | |
download | Doxygen-7a2164d252a0cb5410ab13b0ca1611a8e94e3c99.zip Doxygen-7a2164d252a0cb5410ab13b0ca1611a8e94e3c99.tar.gz Doxygen-7a2164d252a0cb5410ab13b0ca1611a8e94e3c99.tar.bz2 |
Bug 758132 - Brief description of non documented functions
In case a function or an other item is not documented and EXTRACT_ALL has not been specified it should not appear in the list with brief description of functions etc.
(This patch supersedes the patch as proposed in pull request 411 based on the comments from Dimitri van Heesch)
Diffstat (limited to 'src/dirdef.cpp')
-rw-r--r-- | src/dirdef.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dirdef.cpp b/src/dirdef.cpp index 28c073e..8b7989d 100644 --- a/src/dirdef.cpp +++ b/src/dirdef.cpp @@ -228,6 +228,7 @@ void DirDef::writeSubDirList(OutputList &ol) DirDef *dd; for (;(dd=it.current());++it) { + if (!dd->hasDocumentation()) continue; ol.startMemberDeclaration(); ol.startMemberItem(dd->getOutputFileBase(),0); ol.parseText(theTranslator->trDir(FALSE,TRUE)+" "); @@ -266,6 +267,7 @@ void DirDef::writeFileList(OutputList &ol) FileDef *fd; for (;(fd=it.current());++it) { + if (!fd->hasDocumentation()) continue; ol.startMemberDeclaration(); ol.startMemberItem(fd->getOutputFileBase(),0); ol.docify(theTranslator->trFile(FALSE,TRUE)+" "); |