summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-05-18 18:53:43 (GMT)
committerGitHub <noreply@github.com>2019-05-18 18:53:43 (GMT)
commita8d0d631b1fe7d542364278f5011096c2f9b5863 (patch)
tree45126fc27d8efe6137371439e9bbd0c035760dfe /src
parent031e3ef659f43764d898d89003ca0340a96ff1d0 (diff)
parentc2331032caedccd26b0a29f09a7b379c63e96014 (diff)
downloadDoxygen-a8d0d631b1fe7d542364278f5011096c2f9b5863.zip
Doxygen-a8d0d631b1fe7d542364278f5011096c2f9b5863.tar.gz
Doxygen-a8d0d631b1fe7d542364278f5011096c2f9b5863.tar.bz2
Merge pull request #6962 from albert-github/feature/bug_output_tag_order
Incorrect output tag order
Diffstat (limited to 'src')
-rw-r--r--src/pagedef.cpp4
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();