diff options
Diffstat (limited to 'src/configoptions.cpp')
-rw-r--r-- | src/configoptions.cpp | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/src/configoptions.cpp b/src/configoptions.cpp index 2afa94a..2e45947 100644 --- a/src/configoptions.cpp +++ b/src/configoptions.cpp @@ -2123,13 +2123,11 @@ void addConfigOptions(Config *cfg) //---- cs = cfg->addString( "DOT_FONTNAME", - "By default doxygen will write a font called Helvetica to the output\n" - "directory and reference it in all dot files that doxygen generates.\n" - "When you want a differently looking font you can specify the font name\n" - "using DOT_FONTNAME. You need to make sure dot is able to find the font,\n" - "which can be done by putting it in a standard location or by setting the\n" - "DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory\n" - "containing the font." + "By default doxygen will use the Helvetica font for all dot files that doxygen generates. When you want a differently looking font you can specify\n" + "the font name using DOT_FONTNAME. You need to make sure dot is able to find\n" + "the font, which can be done by putting it in a standard location or by setting\n" + "the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the\n" + "directory containing the font." ); cs->setDefaultValue("Helvetica"); cs->addDependency("HAVE_DOT"); @@ -2144,10 +2142,8 @@ void addConfigOptions(Config *cfg) //---- cs = cfg->addString( "DOT_FONTPATH", - "By default doxygen will tell dot to use the output directory to look for the\n" - "FreeSans.ttf font (which doxygen will put there itself). If you specify a\n" - "different font using DOT_FONTNAME you can set the path where dot\n" - "can find it using this tag." + "By default doxygen will tell dot to use the Helvetica font.\n" + "If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to set the path where dot can find it." ); cs->addDependency("HAVE_DOT"); //---- @@ -2260,7 +2256,8 @@ void addConfigOptions(Config *cfg) "DOT_IMAGE_FORMAT", "The DOT_IMAGE_FORMAT tag can be used to set the image format of the images\n" "generated by dot. Possible values are svg, png, jpg, or gif.\n" - "If left blank png will be used.", + "If left blank png will be used. If you choose svg you need to set\n" + "HTML_FILE_EXTENSION to xhtml in order to make the SVG files visible in IE 9+ (other browsers do not have this requirement).", "png" ); ce->addValue("png"); |