GNOME Bugzilla – Bug 592808
@todo statements aren't added to the todo list for @enum and @name blocks
Last modified: 2009-08-25 11:52:53 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; }
Confirmed. Should be fixed in the next release.
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).