summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-05-15 14:14:27 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2016-05-15 14:14:27 (GMT)
commitec1ef7b4971540bbe042b16d7ebd3f2a0e0e57f1 (patch)
tree28a8b1e7fed00f348227e51e47ea98842ee2907d /src
parent8ccd98643a3b88aaa3245b76202666900a2cd401 (diff)
downloadDoxygen-ec1ef7b4971540bbe042b16d7ebd3f2a0e0e57f1.zip
Doxygen-ec1ef7b4971540bbe042b16d7ebd3f2a0e0e57f1.tar.gz
Doxygen-ec1ef7b4971540bbe042b16d7ebd3f2a0e0e57f1.tar.bz2
Bug 764711 - quick link index in alphabetical class list in classes.html doesn't work
Diffstat (limited to 'src')
-rw-r--r--src/index.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.cpp b/src/index.cpp
index 2e94085..96909c7 100644
--- a/src/index.cpp
+++ b/src/index.cpp
@@ -1777,7 +1777,7 @@ static void writeAlphabeticalClassList(OutputList &ol)
int index = getPrefixIndex(cd->className());
//printf("name=%s index=%d %d\n",cd->className().data(),index,cd->protection());
- startLetter=getUtf8CodeToUpper(cd->className(),index);
+ startLetter=getUtf8CodeToLower(cd->className(),index);
indexLettersUsed.add(startLetter);
}
}
@@ -1828,7 +1828,7 @@ static void writeAlphabeticalClassList(OutputList &ol)
if (cd->isLinkableInProject() && cd->templateMaster()==0)
{
int index = getPrefixIndex(cd->className());
- startLetter=getUtf8Code(cd->className(),index);
+ startLetter=getUtf8CodeToLower(cd->className(),index);
// Do some sorting again, since the classes are sorted by name with
// prefix, which should be ignored really.
if (cd->getLanguage()==SrcLangExt_VHDL)