From 54590d677eac410744f1c68ae073c15f6b457ff6 Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Mon, 13 Jun 2016 16:24:20 +0100 Subject: [PATCH] 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); -- 2.7.4