diff options
Diffstat (limited to 'src/htmlhelp.cpp')
-rw-r--r-- | src/htmlhelp.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp index d40e50a..58e79f2 100644 --- a/src/htmlhelp.cpp +++ b/src/htmlhelp.cpp @@ -480,6 +480,8 @@ void HtmlHelp::finalize() { // end the contents file cts << "</UL>\n"; + cts << "</BODY>\n"; + cts << "</HTML>\n"; cts.unsetDevice(); cf->close(); delete cf; @@ -488,6 +490,8 @@ void HtmlHelp::finalize() // end the index file kts << "</UL>\n"; + kts << "</BODY>\n"; + kts << "</HTML>\n"; kts.unsetDevice(); kf->close(); delete kf; |