GNOME Bugzilla – Bug 700385
Incorrectly parsed Q_PROPERTY with 'unsigned int' type
Last modified: 2013-08-23 15:04:28 UTC
Have the following header file: #include <QtCore/QObject> class Test : public QObject { Q_OBJECT Q_PROPERTY(unsigned int myprop READ myprop WRITE setMyprop NOTIFY mypropChanged) public: unsigned int myprop(); Q_SLOT void setMyprop(unsigned int myprop); Q_SIGNAL void mypropChanged(); } Then Doxygen 1.8.3.1 generates the following XML output within the XML describing the 'Test' class: <memberdef kind="property" id="class_test_1a172b2004b77adb9a10b12dd012da7061" prot="public" static="no" readable="yes" writable="yes" gettable="no" settable="no"> <type>unsigned</type> <definition>unsigned Test::int</definition> <argsstring></argsstring> <name>int</name> <read>myprop</read> <write>setMyprop</write> <briefdescription> </briefdescription> <detaileddescription> </detaileddescription> <inbodydescription> </inbodydescription> <location .../> </memberdef> The 'type', 'definition', 'name' values are incorrect.
Confirmed. Should be fixed in the next GIT update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.5. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant.