Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get rid of "The documentation for this class was generated from the following files" paragraph?

What option, and where it is in the GUI front end, do I need to set to remove the paragraph

The documentation for this class was generated from the following files:

from my project documentation pages?

Alternatively, how do I get rid of the absolute paths in this list of files, for example C:/Users/Avesta/Desktop/CF/trunnk/CloudServer/ in the snippet below:

enter image description here?

like image 905
myWallJSON Avatar asked Jan 04 '12 12:01

myWallJSON


1 Answers

The visibility of the section that shows which files have been used is controlled by the SHOW_USED_FILES setting.

Doxygen will show absolute paths when FULL_PATH_NAMES is set to YES and the relevant part is not stripped off via STRIP_FROM_PATH.

So either setting

SHOW_USED_FILES = NO 

or setting

FULL_PATH_NAMES = NO 

or setting

FULL_PATH_NAMES = YES STRIP_FROM_PATH = C:/Users/Avesta/Desktop/CF/trunk/CloudServer 

should solve your problem.

like image 133
doxygen Avatar answered Sep 28 '22 16:09

doxygen