Bug 427366 - Doxygen parameter comments don't show in tooltip pop-up
Summary: Doxygen parameter comments don't show in tooltip pop-up
Status: REPORTED
Alias: None
Product: kdevelop
Classification: Applications
Component: Doxygen integration (other bugs)
Version First Reported In: 5.5.2
Platform: openSUSE Linux
: NOR wishlist
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-10-05 15:20 UTC by akruppa
Modified: 2020-10-05 15:20 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed/Implemented In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description akruppa 2020-10-05 15:20:35 UTC
When commenting a function/method parameter in Doxygen style, the tooltip pop-up for that variable doesn't show the comment.

E.g., with this

    /** Compute square of an integer
     * \param [in] x The integer to be squared
     */
    unsigned int
    sqr(const unsigned int x)
    {
        unsigned int r = x*x; /**< The square */
        return r;
    }

the context window for `x` says

    const unsigned int x
    Container: sqr Kind: Variable constant 
    Decl.: sqr.c :5 Show uses

It would be nice to have, e.g.,

    \param [in] x The integer to be squared

some something like that appear in that tooltip window, similarly to how

   The square

appears in the tooltip for variable r.