efl_ui/layout: fix shadow warning

Summary:
a variable with the same name is declared above
Depends on D10192

Reviewers: segfaultxavi

Reviewed By: segfaultxavi

Subscribers: segfaultxavi, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10193
This commit is contained in:
Mike Blumenkrantz 2019-09-26 17:03:32 +02:00 committed by Xavi Artigas
parent a21dacbad6
commit 6f6407729e
1 changed files with 3 additions and 3 deletions

View File

@ -570,8 +570,8 @@ _efl_ui_layout_base_efl_ui_widget_theme_apply(Eo *obj, Efl_Ui_Layout_Data *sd)
efl_gfx_hint_size_min_set(obj, EINA_SIZE2D(0, 0));
else
{
const char *version = edje_object_data_get(wd->resize_obj, "version");
if (!version)
const char *theme_version = edje_object_data_get(wd->resize_obj, "version");
if (!theme_version)
{
ERR("Widget(%p) with type '%s' is not providing a version in its theme!", obj,
efl_class_name_get(efl_class_get(obj)));
@ -580,7 +580,7 @@ _efl_ui_layout_base_efl_ui_widget_theme_apply(Eo *obj, Efl_Ui_Layout_Data *sd)
else
{
errno = 0;
sd->version = strtoul(version, NULL, 10);
sd->version = strtoul(theme_version, NULL, 10);
if (errno)
{
ERR("Widget(%p) with type '%s' is not providing a valid version in its theme!", obj,