edje_calc: Remove unused flag.

Summary: This has marked remove me.

Reviewers: raster, Hermet, zmike, devilhorns

Reviewed By: devilhorns

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10561
This commit is contained in:
Woochanlee 2019-10-30 08:10:09 -04:00 committed by Christopher Michael
parent 99067bb7eb
commit d5bd2ed2d0
2 changed files with 1 additions and 8 deletions

View File

@ -952,12 +952,8 @@ _edje_recalc(Edje *ed)
return;
}
}
// XXX: dont need this with current smart calc infra. remove me later
// if (ed->postponed) return;
// if (!ed->calc_only)
evas_object_smart_changed(ed->obj);
// XXX: dont need this with current smart calc infra. remove me later
// ed->postponed = EINA_TRUE;
}
static
@ -1009,8 +1005,6 @@ _edje_recalc_do(Edje *ed)
Eina_Bool need_reinit_state = EINA_FALSE;
#endif
// XXX: dont need this with current smart calc infra. remove me later
// ed->postponed = EINA_FALSE;
need_calc = evas_object_smart_need_recalculate_get(ed->obj);
evas_object_smart_need_recalculate_set(ed->obj, 0);
if (!ed->dirty) return;

View File

@ -1786,7 +1786,6 @@ struct _Edje
Eina_Bool walking_actions : 1;
Eina_Bool block_break : 1;
Eina_Bool delete_me : 1;
Eina_Bool postponed : 1;
Eina_Bool freeze_calc : 1;
Eina_Bool has_entries : 1;
Eina_Bool entries_inited : 1;