X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c8f1b2ca5ffd66ac138727aecf847ccc30535d31..e9f0018b823e34405847177b25a85d3facc30ae1:/tools/doxygen/index_create.pl?ds=sidebyside diff --git a/tools/doxygen/index_create.pl b/tools/doxygen/index_create.pl index 7d23af0a58..bad8593e0e 100755 --- a/tools/doxygen/index_create.pl +++ b/tools/doxygen/index_create.pl @@ -66,7 +66,12 @@ foreach $type (qw(define enumeration enumvalue function typedef)) { if($type eq "function") { print OUTPUT "\t
  • $name()
  • \n"; } else { - print OUTPUT "\t
  • #$name
  • \n"; + if($type eq "enumeration") { + print OUTPUT "\t
  • ".$name."::EType
  • \n"; + } + else { + print OUTPUT "\t
  • #$name
  • \n"; + } } } print OUTPUT "\n \n";