summaryrefslogtreecommitdiffstats
path: root/src/classlist.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2001-09-30 15:25:14 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2001-09-30 15:25:14 (GMT)
commit00e00a1df00be67219a28aaa8d58e8a0991555eb (patch)
treec28047dda40b8133ff1326d80fcf662cc8065c7e /src/classlist.cpp
parent156b0bb68fc4104792afb27ee4ee466f3efac206 (diff)
downloadDoxygen-00e00a1df00be67219a28aaa8d58e8a0991555eb.zip
Doxygen-00e00a1df00be67219a28aaa8d58e8a0991555eb.tar.gz
Doxygen-00e00a1df00be67219a28aaa8d58e8a0991555eb.tar.bz2
Release-1.2.11
Diffstat (limited to 'src/classlist.cpp')
-rw-r--r--src/classlist.cpp16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/classlist.cpp b/src/classlist.cpp
index 3772ae5..c78a3f5 100644
--- a/src/classlist.cpp
+++ b/src/classlist.cpp
@@ -35,18 +35,22 @@ int ClassList::compareItems(GCI item1, GCI item2)
{
ClassDef *c1=(ClassDef *)item1;
ClassDef *c2=(ClassDef *)item2;
- return stricmp(c1->localName().data()+getPrefixIndex(c1->localName()),
- c2->localName().data()+getPrefixIndex(c2->localName())
- );
+ //return stricmp(c1->localName().data()+getPrefixIndex(c1->localName()),
+ // c2->localName().data()+getPrefixIndex(c2->localName())
+ // );
+ return stricmp(c1->className().data()+getPrefixIndex(c1->className()),
+ c2->className().data()+getPrefixIndex(c2->className()));
}
int ClassSDict::compareItems(GCI item1, GCI item2)
{
ClassDef *c1=(ClassDef *)item1;
ClassDef *c2=(ClassDef *)item2;
- return stricmp(c1->localName().data()+getPrefixIndex(c1->localName()),
- c2->localName().data()+getPrefixIndex(c2->localName())
- );
+ //return stricmp(c1->localName().data()+getPrefixIndex(c1->localName()),
+ // c2->localName().data()+getPrefixIndex(c2->localName())
+ // );
+ return stricmp(c1->className().data()+getPrefixIndex(c1->className()),
+ c2->className().data()+getPrefixIndex(c2->className()));
}
ClassListIterator::ClassListIterator(const ClassList &cllist) :