QDoc: Allow the listing of uppercase- and lowercase-named items in list.

-QML basic types are lowercase-named while object types are uppercased.
-reference page for QML types should list both.
-caveat: simple implementation means the uppercase items are listed
 first.

Change-Id: I9092ad0cd9e79c4d3f8b794ac5d68879ce6338a5
Reviewed-by: Martin Smith <martin.smith@digia.com>
bb10
Jerome Pasion 2014-07-16 15:38:56 +02:00
parent c87a894927
commit 83c6e74a0c
1 changed files with 1 additions and 1 deletions

View File

@ -2730,7 +2730,7 @@ void HtmlGenerator::generateCompactList(ListType listType,
paragraphName[paragraphNr] = key[0].toUpper();
usedParagraphNames.insert(key[0].toLower().cell());
paragraph[paragraphNr].insert(key, c.value());
paragraph[paragraphNr].insert(c.key(), c.value());
++c;
}