q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=a43fda4ddc3cb3367e300b7fe2be2b20eac07073

commit a43fda4ddc3cb3367e300b7fe2be2b20eac07073
Author: Daniel Kolesa <[email protected]>
Date:   Tue Aug 2 17:35:14 2016 +0100

    docs: put graph before hierarchy
---
 src/scripts/elua/apps/gendoc.lua | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/scripts/elua/apps/gendoc.lua b/src/scripts/elua/apps/gendoc.lua
index eee105e..cf63b1b 100644
--- a/src/scripts/elua/apps/gendoc.lua
+++ b/src/scripts/elua/apps/gendoc.lua
@@ -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)

-- 


Reply via email to