diff options
Diffstat (limited to 'src/htmlhelp.cpp')
-rw-r--r-- | src/htmlhelp.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp index 5d16f59..e3c2608 100644 --- a/src/htmlhelp.cpp +++ b/src/htmlhelp.cpp @@ -306,9 +306,9 @@ void HtmlHelp::createProjectFile() "Default Window=main\n" "Default topic=" << indexName << "\n" "Index file=index.hhk\n" - "Binary TOC=YES\n" - "Create CHI file=YES\n" - "Title=" << Config::projectName << endl << endl; + "Binary TOC=YES\n"; + if (Config::htmlHelpChiFlag) t << "Create CHI file=YES\n"; + t << "Title=" << Config::projectName << endl << endl; t << "[WINDOWS]" << endl; t << "main=\"" << Config::projectName << "\",\"index.hhc\"," |