diff options
author | Maksim Shabunin <maksim.shabunin@itseez.com> | 2015-07-27 15:29:52 (GMT) |
---|---|---|
committer | Maksim Shabunin <maksim.shabunin@itseez.com> | 2015-07-27 15:29:52 (GMT) |
commit | 3b314b5d856f6f7a25d512737e640a6b7b17c8d4 (patch) | |
tree | 436392cb0ce7e18ffb8575e3a7c0279b63fcd921 | |
parent | 9d7221a3bf79e93484639ba7af8e79ad969f1749 (diff) | |
download | Doxygen-3b314b5d856f6f7a25d512737e640a6b7b17c8d4.zip Doxygen-3b314b5d856f6f7a25d512737e640a6b7b17c8d4.tar.gz Doxygen-3b314b5d856f6f7a25d512737e640a6b7b17c8d4.tar.bz2 |
Actually using value of GROUP_NESTED_COMPOUNDS option
-rw-r--r-- | src/scanner.l | 2 |
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; |