Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.8
-
9657a6091 (dev), 68913fd4c (6.9), 841fb865a (6.8)
-
DaVinci 108
Description
Consider the following QML code:
import QtQuick /*! \qmltype Bla \inqmlmodule org.kde.foo \brief A Bla. Bla Bla Bla */ Item { /*! Numbers */ property list<int> myNumbers /*! Items */ property list<Item> myItems }
The resulting HTML text from qdoc is
Property Documentation myItems : Item Items myNumbers : int Numbers
Instead of list<int> there is int, and instead of list<Item> there is Item, meaning relevant information is lost