summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_grid_static.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elementary/efl_ui_grid_static.c')
-rw-r--r--src/lib/elementary/efl_ui_grid_static.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/elementary/efl_ui_grid_static.c b/src/lib/elementary/efl_ui_grid_static.c
index 94f7bf9773..06b4759f71 100644
--- a/src/lib/elementary/efl_ui_grid_static.c
+++ b/src/lib/elementary/efl_ui_grid_static.c
@@ -9,11 +9,11 @@ _efl_ui_grid_static_efl_object_constructor(Eo *obj, void *pd EINA_UNUSED)
{
Efl_Ui_Grid_Data *gd;
- obj = efl_constructor(eo_super(obj, MY_CLASS));
+ obj = efl_constructor(efl_super(obj, MY_CLASS));
efl_canvas_object_type_set(obj, MY_CLASS_NAME);
elm_interface_atspi_accessible_role_set(obj, ELM_ATSPI_ROLE_FILLER);
- gd = eo_data_scope_get(obj, EFL_UI_GRID_CLASS);
+ gd = efl_data_scope_get(obj, EFL_UI_GRID_CLASS);
gd->layout_engine = MY_CLASS;
gd->req_cols = 100;
gd->req_rows = 100;
@@ -33,7 +33,7 @@ _efl_ui_grid_static_efl_pack_layout_layout_do(Efl_Class *klass EINA_UNUSED,
long long xl, yl, wl, hl, vwl, vhl;
Eina_Bool mirror;
- gd = eo_data_scope_get(obj, EFL_UI_GRID_CLASS);
+ gd = efl_data_scope_get(obj, EFL_UI_GRID_CLASS);
if (!gd->items) return;
e = evas_object_evas_get(obj);