Summary:
the difference here is, that the macro before did not print ERR's the
one now does. Hence this commit remove two error messages.
Depends on D8394
Reviewers: zmike, segfaultxavi, cedric, devilhorns
Reviewed By: segfaultxavi
Subscribers: #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D8395
if (efl_isa(pd->logical.parent, EFL_UI_WIDGET_CLASS))
{
ELM_WIDGET_DATA_GET(pd->logical.parent, logical_wd);
- if (!logical_wd)
- {
- ERR("Widget parent has the wrong type!");
- return NULL;
- }
logical_wd->logical.child_count --;
}
old = pd->logical.parent;
if (efl_isa(parent, EFL_UI_WIDGET_CLASS))
{
ELM_WIDGET_DATA_GET(parent, parent_wd);
- if (!parent_wd)
- {
- ERR("Widget parent has the wrong type!");
- return NULL;
- }
parent_wd->logical.child_count ++;
}
pd->logical.parent = parent;