q66 pushed a commit to branch master.

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

commit 596d01a83ae0e07cb615e0a2e5eb8ff0cd89497e
Author: Daniel Kolesa <d.kol...@samsung.com>
Date:   Thu Oct 2 12:39:34 2014 +0100

    elua: lualian type fix
---
 src/bin/elua/modules/lualian.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/elua/modules/lualian.lua b/src/bin/elua/modules/lualian.lua
index fb72591..42f2f6f 100644
--- a/src/bin/elua/modules/lualian.lua
+++ b/src/bin/elua/modules/lualian.lua
@@ -247,7 +247,7 @@ local Property = Method:clone {
             name    = prop:name_get(),
             suffix  = (self.isget and "_get" or "_set")
         }
-        proto.ret_type = rett or "void"
+        proto.ret_type = rett and rett:c_type_get() or "void"
         local args, cargs, vargs = { "self" }, {}, {}
         proto.args, proto.cargs, proto.vargs = args, cargs, vargs
         local rets = {}

-- 


Reply via email to