diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-10-29 18:39:28 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-10-29 18:39:28 (GMT) |
commit | d384b6c7459cffcbb30bdd0ab06bde6f0cd12688 (patch) | |
tree | 6386fc01aea029071bdcabdf150991c7632b5fd3 /src/classdef.cpp | |
parent | 6ad4771494b64943541d87639743de4d6618ebc4 (diff) | |
download | Doxygen-d384b6c7459cffcbb30bdd0ab06bde6f0cd12688.zip Doxygen-d384b6c7459cffcbb30bdd0ab06bde6f0cd12688.tar.gz Doxygen-d384b6c7459cffcbb30bdd0ab06bde6f0cd12688.tar.bz2 |
Release-1.5.1
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index 8dffbd9..9ed8c1f 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -3061,7 +3061,9 @@ void ClassDef::addMemberToList(MemberList::ListType lt,MemberDef *md) ml->inSort(md); else ml->append(md); - md->setSectionList(this,ml); + + // for members in the declaration lists we set the section, needed for member grouping + if ((ml->listType()&MemberList::detailedLists)==0) md->setSectionList(this,ml); } void ClassDef::writeMemberDeclarations(OutputList &ol,MemberList::ListType lt,const QCString &title, |