q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=4f540c1a7c4133820ddd73ea88e7bde288351a37
commit 4f540c1a7c4133820ddd73ea88e7bde288351a37 Author: Daniel Kolesa <[email protected]> Date: Fri Feb 24 17:17:52 2017 +0100 docgen: fix broken inheritance graphs --- src/scripts/elua/apps/gendoc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/elua/apps/gendoc.lua b/src/scripts/elua/apps/gendoc.lua index 2c5d07c..ea5406b 100644 --- a/src/scripts/elua/apps/gendoc.lua +++ b/src/scripts/elua/apps/gendoc.lua @@ -631,7 +631,7 @@ build_igraph_r = function(cl, nbuf, ibuf) local sn = cl:full_name_get():lower():gsub("%.", "_") for i, acl in ipairs(cl:inherits_get()) do nbuf[#nbuf + 1] = class_to_node(acl) - ibuf[#ibuf + 1] = { sn, (cl:full_name_get():lower():gsub("%.", "_")) } + ibuf[#ibuf + 1] = { sn, (acl:full_name_get():lower():gsub("%.", "_")) } build_igraph_r(acl, nbuf, ibuf) end end --
