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
parent
c87a894927
commit
83c6e74a0c
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue