Navigation Menu

Skip to content

Commit

Permalink
Bug 764711 - quick link index in alphabetical class list in classes.h…
Browse files Browse the repository at this point in the history
…tml doesn't work
  • Loading branch information
Dimitri van Heesch committed May 15, 2016
1 parent 8ccd986 commit ec1ef7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.cpp
Expand Up @@ -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);
}
}
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit ec1ef7b

Please sign in to comment.