summaryrefslogtreecommitdiffstats
path: root/src/reflist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/reflist.h')
-rw-r--r--src/reflist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reflist.h b/src/reflist.h
index a4a450e..3124582 100644
--- a/src/reflist.h
+++ b/src/reflist.h
@@ -3,7 +3,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
@@ -48,7 +48,7 @@ class SortedRefItems : public SDict<RefItem>
{
RefItem *r1 = (RefItem*)item1;
RefItem *r2 = (RefItem*)item2;
- return stricmp(r1->title,r2->title);
+ return qstricmp(r1->title,r2->title);
}
};