summaryrefslogtreecommitdiffstats
path: root/src/dot.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-03-12 17:43:22 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-03-12 17:43:22 (GMT)
commitfbf972e737aac564670aa655a3b69d82a8558e7f (patch)
treee9f3eb760b666941c8905588b99d5e8378c8b507 /src/dot.cpp
parent69124e6ce7f023848920d2a18bc317ae92d355a2 (diff)
downloadDoxygen-fbf972e737aac564670aa655a3b69d82a8558e7f.zip
Doxygen-fbf972e737aac564670aa655a3b69d82a8558e7f.tar.gz
Doxygen-fbf972e737aac564670aa655a3b69d82a8558e7f.tar.bz2
Release 1.1.1
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);
}
};