summaryrefslogtreecommitdiffstats
path: root/src/definition.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/definition.h')
-rw-r--r--src/definition.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/definition.h b/src/definition.h
index 9d80431..9bbc85e 100644
--- a/src/definition.h
+++ b/src/definition.h
@@ -2,7 +2,7 @@
*
*
*
- * Copyright (C) 1997-2012 by Dimitri van Heesch.
+ * Copyright (C) 1997-2013 by Dimitri van Heesch.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby
@@ -364,7 +364,7 @@ class DefinitionList : public QList<Definition>, public DefinitionIntf
DefType definitionType() const { return TypeSymbolList; }
int compareItems(QCollection::Item item1,QCollection::Item item2)
{
- return stricmp(((Definition *)item1)->name(),
+ return qstricmp(((Definition *)item1)->name(),
((Definition *)item2)->name()
);
}