From: Václav Slavík Date: Mon, 19 Nov 2001 23:54:12 +0000 (+0000) Subject: case-insensitive sort of HTML help index X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/25fd9bdfca604b1042892225caf38b2e8f6fbdc6 case-insensitive sort of HTML help index git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12497 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/helpdata.cpp b/src/html/helpdata.cpp index beb05d3d65..11af5d51dc 100644 --- a/src/html/helpdata.cpp +++ b/src/html/helpdata.cpp @@ -63,7 +63,7 @@ static char* ReadLine(char *line, char *buf) static int LINKAGEMODE IndexCompareFunc(const void *a, const void *b) { - return wxStrcmp(((wxHtmlContentsItem*)a)->m_Name, ((wxHtmlContentsItem*)b)->m_Name); + return wxStricmp(((wxHtmlContentsItem*)a)->m_Name, ((wxHtmlContentsItem*)b)->m_Name); }