diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-05-14 19:55:59 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-05-14 19:55:59 (GMT) |
commit | 20bd371f722f95bdf9da2d5c27753af4d38e7b6f (patch) | |
tree | d211455e0cef95445694e7630c63dd0e90d3f3a5 /src/index.cpp | |
parent | ea4b32cb910635a50467b02f36b5521337451cf0 (diff) | |
download | Doxygen-20bd371f722f95bdf9da2d5c27753af4d38e7b6f.zip Doxygen-20bd371f722f95bdf9da2d5c27753af4d38e7b6f.tar.gz Doxygen-20bd371f722f95bdf9da2d5c27753af4d38e7b6f.tar.bz2 |
Release-1.3-20030514
Diffstat (limited to 'src/index.cpp')
-rw-r--r-- | src/index.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/index.cpp b/src/index.cpp index faa4091..852143a 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -2285,7 +2285,9 @@ void writeGroupTreeNode(OutputList &ol, GroupDef *gd,int level) /* Some groups should appear twice under different parent-groups. * That is why we should not check if it was visited */ - if (/*!gd->visited &&*/ (!gd->isASubGroup() || level>0)) + if (/*!gd->visited &&*/ (!gd->isASubGroup() || level>0) && + (!gd->isReference() || Config_getBool("EXTERNAL_GROUPS")) // hide external groups by default + ) { //printf("gd->name()=%s #members=%d\n",gd->name().data(),gd->countMembers()); // write group info |