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 592808 - @todo statements aren't added to the todo list for @enum and @name blocks
@todo statements aren't added to the todo list for @enum and @name blocks
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.6.0
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2009-08-23 15:22 UTC by Assaf Mendelson
Modified: 2009-08-25 11:52 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
My doxyfile (63.69 KB, application/octet-stream)
2009-08-23 15:22 UTC, Assaf Mendelson
Details

Description Assaf Mendelson 2009-08-23 15:22:22 UTC
Created attachment 141500 [details]
My doxyfile

Documenting C# files. 
@todo statements in @enum and in @name description blocks are seen when looking
at the documentation for the relevant page but are not added to the todo list.

The following example shows the problem:

////////////////////////////////////////////////////////////////////////////////
/// @class  Class1
///
/// @brief  Example class with the problem
/// 
/// long desc
///
/// @todo works here
////////////////////////////////////////////////////////////////////////////////
class Class1
{
   
////////////////////////////////////////////////////////////////////////////////
    /// @enum   myEnum
    ///
    /// @brief  enum example
    /// 
    /// long desc
    /// 
    /// @todo doesn't work here
    /// 
   
////////////////////////////////////////////////////////////////////////////////
    public enum myEnum
    {
        eValue1, ///< value 1
        eValue2 ///< value 2
    }

    /// @name Group example
    /// @todo Doesn't work here
    /// @{
    public int mInt; ///< @brief int
    public float mFloat; ///< @brief float
    public myEnum mEnum; ///< @brief enum
    /// @}

      
////////////////////////////////////////////////////////////////////////////////
    /// @fn public void func()
    ///
    /// @brief  func example
    ///
    /// long desc
    /// 
    /// @todo works here
   
////////////////////////////////////////////////////////////////////////////////
   public void func()
    {
    }

    /// @brief public member
    /// long desc
    /// @todo works here
    public int mPublicInt; 
}
Comment 1 Dimitri van Heesch 2009-08-23 19:33:12 UTC
Confirmed. Should be fixed in the next release.
Comment 2 Dimitri van Heesch 2009-08-25 11:52:53 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.6.1. Please verify if this is indeed the case and reopen the
bug if you think it is not fixed (include any additional information that you
think can be relevant).