summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-07-27 17:21:28 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-07-27 17:21:28 (GMT)
commit31c5aecbec5200bbfe797cfe8e7c0b565717a96f (patch)
treef9e69d5443a5cbac295b337e5fa2ec69b4a0862a /src
parent21fb8c08c0a24267d0f94a1be86343697a2bb957 (diff)
parent3b314b5d856f6f7a25d512737e640a6b7b17c8d4 (diff)
downloadDoxygen-31c5aecbec5200bbfe797cfe8e7c0b565717a96f.zip
Doxygen-31c5aecbec5200bbfe797cfe8e7c0b565717a96f.tar.gz
Doxygen-31c5aecbec5200bbfe797cfe8e7c0b565717a96f.tar.bz2
Merge pull request #374 from mshabunin/use-group-nested-compounds-option
Actually using value of GROUP_NESTED_COMPOUNDS option
Diffstat (limited to 'src')
-rw-r--r--src/scanner.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 328dc3f..e9d5707 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -6749,7 +6749,7 @@ static void parseCompounds(Entry *rt)
// deep copy group list from parent (see bug 727732)
static bool autoGroupNested = Config_getBool("GROUP_NESTED_COMPOUNDS");
- if (rt->groups && ce->section!=Entry::ENUM_SEC && !(ce->spec&Entry::Enum))
+ if (autoGroupNested && rt->groups && ce->section!=Entry::ENUM_SEC && !(ce->spec&Entry::Enum))
{
QListIterator<Grouping> gli(*rt->groups);
Grouping *g;