Re: [Doxygen-users] xrefitem overview page not generated properly
Brought to you by:
dimitri
|
From: René S. <r.s...@gm...> - 2017-09-12 10:02:33
|
hmm - it seems that this problem comes from the combination of TYPEDEF_HIDES_STRUCT and the use of forward declaration of the following form:
/**
* \component SomeComp
*
*/
typedef struct sSomeComp_t SomeComp_t;
and then later:
/* Component SomeComp - for documentation, see above */
struct sSomeComp_t
{
int dummy
};
If I set TYPEDEF_HIDES_STRUCT to NO then the list is created but also i have all tag names in the documentation :(
I would consider this a bug, since the the \component is at the typedef.
I think the documenbtations of the typedef and the tag should be merged.
> Gesendet: Dienstag, 12. September 2017 um 10:11 Uhr
> Von: "René Staffen" <r.s...@gm...>
> An: dox...@li...
> Betreff: [Doxygen-users] xrefitem overview page not generated properly
>
> Hi,
>
> i created the following xrefitem - alias:
>
> "component=\xrefitem componentList \"Component\" \"List of Components\" implements design component"
>
> But the generated dokumentation lacks the corresponding entry in the "Related Pages" section .
>
> The documented entities (that contain the component keyword) all correctly contain the section "Component". This section header is also a link but the targeted hml file does not exist.
>
> So it seems that something is wrong with the main-page generation.
> I am not using any self defined template and also deleted the whole output folder and restarted the generation.
>
> Any further ideas?
>
> best regards
> René
>
> ------------------------------------------------------------------------------
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> _______________________________________________
> Doxygen-users mailing list
> Dox...@li...
> https://lists.sourceforge.net/lists/listinfo/doxygen-users
>
|