GNOME Bugzilla – Bug 680405
Fortran: Entities on line with USE, ONLY not hyper linked in code
Last modified: 2012-08-12 12:32:48 UTC
The entities on the same line as the USE, ONLY statement were not hyper linked in the code view, following items were. Example: ======== mod1.f: MODULE mod1 !> \addtogroup mod1_grp desc !> \{ !> \name mod desc !> \{ INTEGER, PARAMETER :: var2 = 2 CHARACTER(len=4), PARAMETER :: var1 = "1" !> \} !> \} END MODULE mod2.f90: MODULE mod2 USE mod1, ONLY : var2 & , var2 & , var1 END MODULE of mod2.f90 in the code the first var2 was not hyper linked whilst the second var2 and var1 were hyper linked (used here twice var2 for the demonstration purpose only)
Created attachment 219436 [details] [review] PATCH: hyperlink all entities with USE, ONLY The attached patch hyper links also the items on the same line as USE, ONLY
Thanks, I'll include the patch in the next subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.2. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant.
Works as described