q66 pushed a commit to branch master.

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

commit 54590d677eac410744f1c68ae073c15f6b457ff6
Author: Daniel Kolesa <d.kol...@osg.samsung.com>
Date:   Mon Jun 13 16:24:20 2016 +0100

    eolian: fix impl func fill
    
    If there is a dot in the remaining part of the implement, it means it
    actually implements another class - do not fail in those cases.
---
 src/lib/eolian/database_fill.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/eolian/database_fill.c b/src/lib/eolian/database_fill.c
index c75f517..286b471 100644
--- a/src/lib/eolian/database_fill.c
+++ b/src/lib/eolian/database_fill.c
@@ -30,7 +30,7 @@ _get_impl_func(Eolian_Class *cl, Eolian_Implement *impl,
    else
      return EINA_TRUE;
    if (strchr(imstr, '.'))
-     return EINA_FALSE;
+     return EINA_TRUE;
    impl->klass = cl;
    *foo_id = (Eolian_Function*)eolian_class_function_get_by_name(cl, imstr,
                                                                  ftype);

-- 


Reply via email to