summaryrefslogtreecommitdiffstats
path: root/src/namespacedef.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/namespacedef.h')
-rw-r--r--src/namespacedef.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/namespacedef.h b/src/namespacedef.h
index 91c8634..f81542c 100644
--- a/src/namespacedef.h
+++ b/src/namespacedef.h
@@ -91,7 +91,7 @@ class NamespaceList : public QList<NamespaceDef>
~NamespaceList() {}
int compareItems(GCI item1,GCI item2)
{
- return strcmp(((NamespaceDef *)item1)->name(),
+ return strcasecmp(((NamespaceDef *)item1)->name(),
((NamespaceDef *)item2)->name()
);
}