summaryrefslogtreecommitdiffstats
path: root/src/example.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/example.h')
-rw-r--r--src/example.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/example.h b/src/example.h
index 4bcaeb9..8a2b529 100644
--- a/src/example.h
+++ b/src/example.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
@@ -40,7 +40,7 @@ class ExampleSDict : public SDict<Example>
~ExampleSDict() {}
int compareItems(QCollection::Item item1,QCollection::Item item2)
{
- return stricmp(((Example *)item1)->name,((Example *)item2)->name);
+ return qstricmp(((Example *)item1)->name,((Example *)item2)->name);
}
};