summaryrefslogtreecommitdiffstats
path: root/src/classlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/classlist.cpp')
-rw-r--r--src/classlist.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/classlist.cpp b/src/classlist.cpp
index 8623347..527fa58 100644
--- a/src/classlist.cpp
+++ b/src/classlist.cpp
@@ -10,7 +10,8 @@
* for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details.
*
- * All output generated with Doxygen is not covered by this license.
+ * Documents produced by Doxygen are derivative works derived from the
+ * input used in their production; they are not affected by this license.
*
*/
@@ -30,13 +31,12 @@ int ClassList::compareItems(GCI item1, GCI item2)
{
ClassDef *c1=(ClassDef *)item1;
ClassDef *c2=(ClassDef *)item2;
-
//int prefixLength = Config::ignorePrefix.length();
//int i1 = c1->name().left(prefixLength)==Config::ignorePrefix ? prefixLength : 0;
//int i2 = c2->name().left(prefixLength)==Config::ignorePrefix ? prefixLength : 0;
return stricmp(c1->name().data()+getPrefixIndex(c1->name()),
- c2->name().data()+getPrefixIndex(c2->name())
- );
+ c2->name().data()+getPrefixIndex(c2->name())
+ );
}
ClassListIterator::ClassListIterator(const ClassList &cllist) :