GNOME Bugzilla – Bug 669072
Merged detailed descriptions of two Q_PROPERTY with templates and namespaces
Last modified: 2012-02-05 10:00:19 UTC
Created attachment 206483 [details] The result Have a header file with the following code: namespace mynamespace { class MyClass : QObject { Q_OBJECT /*! * First property. */ Q_PROPERTY(QDeclarativeListProperty<mynamespace::MyItem> firstproperty) /*! * Second property. */ Q_PROPERTY(QDeclarativeListProperty<mynamespace::MyItem> secondproperty) } } Running Doxygen with 'GENERATE_XML=YES' option creates an XML file for the class with single memberdef. The memberdef has: 1) name is 'mynamespace' 2) detaileddescription contains description from both Q_PROPERTY. The file is attached. This bug might be related to bug 669071.
I checked and the fix for 669701 also fixes this one. *** This bug has been marked as a duplicate of bug 669071 ***