q66 pushed a commit to branch master.

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

commit 91440459259ada55b7a658a4111b023116f8addf
Author: Daniel Kolesa <d.kol...@osg.samsung.com>
Date:   Fri Mar 2 13:52:13 2018 +0100

    elua: update path retrieval APIs
---
 src/bindings/luajit/eolian.lua | 20 ++++++++------------
 1 file changed, 8 insertions(+), 12 deletions(-)

diff --git a/src/bindings/luajit/eolian.lua b/src/bindings/luajit/eolian.lua
index 56b24d59d7..4684292218 100644
--- a/src/bindings/luajit/eolian.lua
+++ b/src/bindings/luajit/eolian.lua
@@ -333,10 +333,6 @@ ffi.cdef [[
     Eina_Iterator *eolian_unit_structs_get(const Eolian_Unit *unit);
     Eina_Iterator *eolian_unit_enums_get(const Eolian_Unit *unit);
 
-    Eina_Iterator *eolian_all_eo_file_paths_get(Eolian_State *state);
-    Eina_Iterator *eolian_all_eot_file_paths_get(Eolian_State *state);
-    Eina_Iterator *eolian_all_eo_files_get(Eolian_State *state);
-    Eina_Iterator *eolian_all_eot_files_get(Eolian_State *state);
     const Eolian_Class *eolian_class_get_by_name(const Eolian_Unit *unit, 
const char *class_name);
     const Eolian_Class *eolian_class_get_by_file(const Eolian_Unit *unit, 
const char *file_name);
     const char *eolian_class_file_get(const Eolian_Class *klass);
@@ -577,20 +573,20 @@ ffi.metatype("Eolian_State", {
             return eolian.eolian_state_all_eot_files_parse(self) ~= 0
         end,
 
-        all_eo_file_paths_get = function(self)
-            return 
iterator.String_Iterator(eolian.eolian_all_eo_file_paths_get(self))
+        eo_file_paths_get = function(self)
+            return 
iterator.String_Iterator(eolian.eolian_state_eo_file_paths_get(self))
         end,
 
-        all_eot_file_paths_get = function(self)
-            return 
iterator.String_Iterator(eolian.eolian_all_eot_file_paths_get(self))
+        eot_file_paths_get = function(self)
+            return 
iterator.String_Iterator(eolian.eolian_state_eot_file_paths_get(self))
         end,
 
-        all_eo_files_get = function(self)
-            return 
iterator.String_Iterator(eolian.eolian_all_eo_files_get(self))
+        eo_files_get = function(self)
+            return 
iterator.String_Iterator(eolian.eolian_state_eo_files_get(self))
         end,
 
-        all_eot_files_get = function(self)
-            return 
iterator.String_Iterator(eolian.eolian_all_eot_files_get(self))
+        eot_files_get = function(self)
+            return 
iterator.String_Iterator(eolian.eolian_state_eot_files_get(self))
         end,
 
         declarations_get_by_file = function(self, fname)

-- 


Reply via email to