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 680405 - Fortran: Entities on line with USE, ONLY not hyper linked in code
Fortran: Entities on line with USE, ONLY not hyper linked in code
Status: VERIFIED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.1.2-SVN
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2012-07-22 17:50 UTC by albert
Modified: 2012-08-12 12:32 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
PATCH: hyperlink all entities with USE, ONLY (1.13 KB, patch)
2012-07-22 17:55 UTC, albert
none Details | Review

Description albert 2012-07-22 17:50:43 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)
Comment 1 albert 2012-07-22 17:55:44 UTC
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
Comment 2 Dimitri van Heesch 2012-07-28 19:17:08 UTC
Thanks, I'll include the patch in the next subversion update.
Comment 3 Dimitri van Heesch 2012-08-11 13:18:20 UTC
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.
Comment 4 albert 2012-08-12 12:32:48 UTC
Works as described