summaryrefslogtreecommitdiffstats
path: root/src/dot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dot.cpp')
-rw-r--r--src/dot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dot.cpp b/src/dot.cpp
index 03f4227..e1e31c2 100644
--- a/src/dot.cpp
+++ b/src/dot.cpp
@@ -159,7 +159,7 @@ class DotNodeList : public QList<DotNode>
~DotNodeList() {}
int compareItems(GCI item1,GCI item2)
{
- return strcasecmp(((DotNode *)item1)->m_label,((DotNode *)item2)->m_label);
+ return stricmp(((DotNode *)item1)->m_label,((DotNode *)item2)->m_label);
}
};