From: SooChan Lim Date: Fri, 31 Jan 2025 06:36:29 +0000 (+0900) Subject: e_comp_object: remove e_comp_object_util_fullscreen X-Git-Tag: accepted/tizen/unified/20250203.113944~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F90%2F318990%2F1;p=platform%2Fupstream%2Fenlightenment.git e_comp_object: remove e_comp_object_util_fullscreen e_comp_object_util_fullscreen is useless. Change-Id: I2d9245c33693dc63863785d057905e0d0f3ec46b --- diff --git a/src/bin/compmgr/e_comp_object.c b/src/bin/compmgr/e_comp_object.c index ee1f3373c2..8effa16712 100644 --- a/src/bin/compmgr/e_comp_object.c +++ b/src/bin/compmgr/e_comp_object.c @@ -2788,22 +2788,6 @@ e_comp_object_util_zone_get(Evas_Object *obj) return zone; } -EINTERN void -e_comp_object_util_fullscreen(Evas_Object *obj) -{ - SOFT_ENTRY(); - - if (cw) - e_client_fullscreen(cw->ec, E_FULLSCREEN_RESIZE); - else - { - E_Comp *comp = e_comp_get(); - - evas_object_move(obj, 0, 0); - evas_object_resize(obj, comp->w, comp->h); - } -} - EINTERN void e_comp_object_util_center_pos_get(Evas_Object *obj, int *x, int *y) { diff --git a/src/bin/compmgr/e_comp_object_intern.h b/src/bin/compmgr/e_comp_object_intern.h index 08b1f711ca..1dfeb869f2 100644 --- a/src/bin/compmgr/e_comp_object_intern.h +++ b/src/bin/compmgr/e_comp_object_intern.h @@ -198,7 +198,6 @@ EINTERN void e_comp_object_util_del_list_append(Evas_Object *obj, Evas_Obje EINTERN void e_comp_object_util_del_list_remove(Evas_Object *obj, Evas_Object *to_del); EINTERN void e_comp_object_util_autoclose(Evas_Object *obj, E_Comp_Object_Autoclose_Cb del_cb, E_Comp_Object_Key_Cb cb, const void *data); EINTERN void e_comp_object_util_center_pos_get(Evas_Object *obj, int *x, int *y); -EINTERN void e_comp_object_util_fullscreen(Evas_Object *obj); EINTERN Eina_Bool e_comp_object_damage_exists(Evas_Object *obj); EINTERN void e_comp_object_shape_apply(Evas_Object *obj);