evas_pbject_intercept: add missing parenthesis

Broken in 7c99e0a444.

*spanks*
This commit is contained in:
Daniel Kolesa 2020-03-06 23:30:50 +01:00
parent 8be14b2e6e
commit f6464b0deb
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ _evas_object_intercept_call_evas(Evas_Object_Protected_Data *obj,
return; \
MAGIC_CHECK_END(); \
Evas_Object_Protected_Data *obj = efl_data_scope_safe_get(eo_obj, EFL_CANVAS_OBJECT_CLASS); \
if ((!obj) || (!func) return; \
if ((!obj) || (!func)) return; \
evas_object_intercept_init(obj); \
if (!obj->interceptors) return; \
obj->interceptors->Lower_Type.func = func; \