diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-08-13 17:49:57 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-08-13 17:49:57 (GMT) |
commit | 5ce25000172e185e0ca5b9f20538f80cbbfe0b0e (patch) | |
tree | 69018221b85af2e6f7d24d25d207dd6fdc8795ad /addon | |
parent | c4ef46195917656ebebed63e3fab5c135d9905a2 (diff) | |
download | Doxygen-5ce25000172e185e0ca5b9f20538f80cbbfe0b0e.zip Doxygen-5ce25000172e185e0ca5b9f20538f80cbbfe0b0e.tar.gz Doxygen-5ce25000172e185e0ca5b9f20538f80cbbfe0b0e.tar.bz2 |
Release-1.2.1
Diffstat (limited to 'addon')
-rw-r--r-- | addon/configgen/config_templ.l | 2 | ||||
-rw-r--r-- | addon/configgen/configgen.cpp | 17 |
2 files changed, 10 insertions, 9 deletions
diff --git a/addon/configgen/config_templ.l b/addon/configgen/config_templ.l index 3da3d56..aab5755 100644 --- a/addon/configgen/config_templ.l +++ b/addon/configgen/config_templ.l @@ -239,7 +239,7 @@ static void readIncludeFile(const char *incName) else { ConfigFileState *fs=includeStack.pop(); - pclose(fs->filePtr); + fclose(fs->filePtr); YY_BUFFER_STATE oldBuf = YY_CURRENT_BUFFER; yy_switch_to_buffer( fs->oldState ); yy_delete_buffer( oldBuf ); diff --git a/addon/configgen/configgen.cpp b/addon/configgen/configgen.cpp index eeba328..4367f20 100644 --- a/addon/configgen/configgen.cpp +++ b/addon/configgen/configgen.cpp @@ -791,14 +791,6 @@ void init() ConfigString::addFixedValue("outputLanguage","Croatian"); ConfigString::addFixedValue("outputLanguage","Polish"); ConfigString::addFixedValue("outputLanguage","Portuguese"); - ConfigBool::add( "noIndexFlag", - "DISABLE_INDEX", - "FALSE", - "generate condensed index flag", - "The DISABLE_INDEX tag can be used to turn on/off the condensed index at \n" - "top of each HTML page. The value NO (the default) enables the index and \n" - "the value YES disables it. \n" - ); ConfigBool::add( "extractAllFlag", "EXTRACT_ALL", "FALSE", @@ -1244,6 +1236,15 @@ void init() "of the generated HTML documentation. \n" ); addDependency("htmlHelpFlag","generateHtml"); + ConfigBool::add( "noIndexFlag", + "DISABLE_INDEX", + "FALSE", + "generate condensed index flag", + "The DISABLE_INDEX tag can be used to turn on/off the condensed index at \n" + "top of each HTML page. The value NO (the default) enables the index and \n" + "the value YES disables it. \n" + ); + addDependency("noIndexFlag","generateHtml"); //----------------------------------------------------------------------------------------------- ConfigInfo::add( "LaTeX","configuration options related to the LaTeX output"); //----------------------------------------------------------------------------------------------- |