diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-03-12 17:43:22 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-03-12 17:43:22 (GMT) |
commit | de611600b5521fab9d65a1b4f27d2042e7b546f9 (patch) | |
tree | e9f3eb760b666941c8905588b99d5e8378c8b507 /src/classdef.h | |
parent | 000241f7603af61328b25cd9a9defc40be43e558 (diff) | |
download | Doxygen-de611600b5521fab9d65a1b4f27d2042e7b546f9.zip Doxygen-de611600b5521fab9d65a1b4f27d2042e7b546f9.tar.gz Doxygen-de611600b5521fab9d65a1b4f27d2042e7b546f9.tar.bz2 |
Release 1.1.1
Diffstat (limited to 'src/classdef.h')
-rw-r--r-- | src/classdef.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/classdef.h b/src/classdef.h index d01a117..1425991 100644 --- a/src/classdef.h +++ b/src/classdef.h @@ -125,7 +125,7 @@ class ClassDef : public Definition BaseClassList *inheritedBy; NamespaceDef *nspace; // the namespace this class is in - /* member list by protection */ + /* member lists by protection */ MemberList pubMembers; MemberList proMembers; MemberList priMembers; @@ -135,6 +135,15 @@ class ClassDef : public Definition MemberList pubSlots; MemberList proSlots; MemberList priSlots; + MemberList pubAttribs; + MemberList proAttribs; + MemberList priAttribs; + MemberList pubStaticAttribs; + MemberList proStaticAttribs; + MemberList priStaticAttribs; + MemberList pubTypes; + MemberList proTypes; + MemberList priTypes; MemberList related; MemberList signals; MemberList friends; @@ -218,7 +227,7 @@ class BaseClassList : public QList<BaseClassDef> if (c1==0 || c2==0) return FALSE; else - return strcasecmp(c1->name(),c2->name()); + return stricmp(c1->name(),c2->name()); } }; |