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.
This commit is contained in:
Daniel Kolesa 2016-06-13 16:24:20 +01:00
parent 17026d963d
commit 54590d677e
1 changed files with 1 additions and 1 deletions

View File

@ -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);