After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 669072 - Merged detailed descriptions of two Q_PROPERTY with templates and namespaces
Merged detailed descriptions of two Q_PROPERTY with templates and namespaces
Status: RESOLVED DUPLICATE of bug 669071
Product: doxygen
Classification: Other
Component: general
1.7.4
Other Linux
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2012-01-30 23:20 UTC by David Kaspar
Modified: 2012-02-05 10:00 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
The result (1.53 KB, text/xml)
2012-01-30 23:20 UTC, David Kaspar
Details

Description David Kaspar 2012-01-30 23:20:31 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.
Comment 1 Dimitri van Heesch 2012-02-05 10:00:19 UTC
I checked and the fix for 669701 also fixes this one.

*** This bug has been marked as a duplicate of bug 669071 ***