diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2005-04-21 21:10:51 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2005-04-21 21:10:51 (GMT) |
commit | 4a8c2f5c896a1883a0611d972952a68498002ae5 (patch) | |
tree | 81218085d3e6e15b1ce6c418734013d48e9deda8 /src/config.l | |
parent | 570375c30adbdb66714d465d849b18e0df9dd6e6 (diff) | |
download | Doxygen-4a8c2f5c896a1883a0611d972952a68498002ae5.zip Doxygen-4a8c2f5c896a1883a0611d972952a68498002ae5.tar.gz Doxygen-4a8c2f5c896a1883a0611d972952a68498002ae5.tar.bz2 |
Release-1.4.2-20050421
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/config.l b/src/config.l index bf7f30d..4750d59 100644 --- a/src/config.l +++ b/src/config.l @@ -1734,6 +1734,7 @@ void Config::create() "provided by doxygen. Whatever the progam writes to standard output \n" "is used as the file version. See the manual for examples. \n" ); + cs->setWidgetType(ConfigString::File); //----------------------------------------------------------------------------------------------- addInfo( "Messages","configuration options related to warning and progress messages"); @@ -1791,6 +1792,7 @@ void Config::create() "and error messages should be written. If left blank the output is written \n" "to stderr. \n" ); + cs->setWidgetType(ConfigString::File); //----------------------------------------------------------------------------------------------- addInfo( "Input","configuration options related to the input files"); //----------------------------------------------------------------------------------------------- @@ -1877,6 +1879,7 @@ void Config::create() "to standard output. If FILTER_PATTERNS is specified, this tag will be \n" "ignored. \n" ); + cs->setWidgetType(ConfigString::File); cl = addList( "FILTER_PATTERNS", "The FILTER_PATTERNS tag can be used to specify filters on a per file pattern \n" @@ -2041,6 +2044,7 @@ void Config::create() "can add a path in front of the file if the result should not be \n" "written to the html output directory. \n" ); + cs->setWidgetType(ConfigString::File); cs->addDependency("GENERATE_HTML"); cs = addString( "HHC_LOCATION", @@ -2049,6 +2053,7 @@ void Config::create() "the HTML help compiler (hhc.exe). If non-empty doxygen will try to run \n" "the HTML help compiler on the generated index.hhp.\n" ); + cs->setWidgetType(ConfigString::File); cs->addDependency("GENERATE_HTML"); cb = addBool( "GENERATE_CHI", |