docs: put graph before hierarchy

This commit is contained in:
Daniel Kolesa 2016-08-02 17:35:14 +01:00
parent e540a9864b
commit a43fda4ddc
1 changed files with 4 additions and 3 deletions

View File

@ -734,9 +734,6 @@ local build_class = function(cl)
f:write_h(cl:full_name_get(), 2)
keyref.add(cl:full_name_get():gsub("%.", "_"), "c")
f:write_h("Inheritance hierarchy", 3)
f:write_list(build_inherits(cl))
f:write_nl()
if use_dot then
if use_folded then
f:write_raw("++++ Inheritance graph |\n\n")
@ -748,6 +745,10 @@ local build_class = function(cl)
f:write_nl(2)
end
f:write_h("Inheritance hierarchy", 3)
f:write_list(build_inherits(cl))
f:write_nl()
f:write_h("Description", 3)
write_full_doc(f, cl:documentation_get())
f:write_nl(2)