diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-05-18 18:53:51 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-05-18 18:53:51 (GMT) |
commit | 1db1a706a8bcc76cc7cdf33ccd79000460c413d8 (patch) | |
tree | 2f19fd6a1ea1eb99f0636d16b2766c4459f1f59b | |
parent | 739020fac54d0725ef4631c3f2ad47cf090affed (diff) | |
parent | a8d0d631b1fe7d542364278f5011096c2f9b5863 (diff) | |
download | Doxygen-1db1a706a8bcc76cc7cdf33ccd79000460c413d8.zip Doxygen-1db1a706a8bcc76cc7cdf33ccd79000460c413d8.tar.gz Doxygen-1db1a706a8bcc76cc7cdf33ccd79000460c413d8.tar.bz2 |
Merge branch 'master' of github.com:doxygen/doxygen
-rw-r--r-- | src/pagedef.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pagedef.cpp b/src/pagedef.cpp index 8272cf6..9f11eb0 100644 --- a/src/pagedef.cpp +++ b/src/pagedef.cpp @@ -268,16 +268,16 @@ void PageDefImpl::writeDocumentation(OutputList &ol) } writePageDocumentation(ol); + ol.endContents(); ol.endPageDoc(); if (generateTreeView && getOuterScope()!=Doxygen::globalScope && !Config_getBool(DISABLE_INDEX)) { - ol.endContents(); endFileWithNavPath(getOuterScope(),ol); } else { - endFile(ol); + endFile(ol,FALSE,TRUE); } ol.popGeneratorState(); |