diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2007-09-02 19:15:32 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2007-09-02 19:15:32 (GMT) |
commit | 8e4a092e4d51347f8f6c61d87154ee74edb13d20 (patch) | |
tree | 05d18b9500cfc4e613b19d0154b89ed18542a3ae /src/htmlhelp.cpp | |
parent | 4a93397673029e3cfd4c9e2d0501a109f858b87c (diff) | |
download | Doxygen-8e4a092e4d51347f8f6c61d87154ee74edb13d20.zip Doxygen-8e4a092e4d51347f8f6c61d87154ee74edb13d20.tar.gz Doxygen-8e4a092e4d51347f8f6c61d87154ee74edb13d20.tar.bz2 |
Release-1.5.3-20070902
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; |