X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/57e75112e7ce09f9577c63184b2e7cebe2a312ba..365058a6f1cd1ae07157d60b7ecabe2800043ef5:/tools/doxygen/index_create.pl diff --git a/tools/doxygen/index_create.pl b/tools/doxygen/index_create.pl index 7d23af0a58..987f2a1504 100755 --- a/tools/doxygen/index_create.pl +++ b/tools/doxygen/index_create.pl @@ -56,7 +56,6 @@ This file was generated by tools/doxygen/index_create.pl. DO NOT EDIT. * * \\htmlonly Although completely useless, the complete list of structures defined can be found here \\endhtmlonly - EOF foreach $type (qw(define enumeration enumvalue function typedef)) { @@ -66,7 +65,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";