e_comp_wl: add E_DEPRECATED
authorSooChan Lim <sc1.lim@samsung.com>
Fri, 9 May 2025 02:19:41 +0000 (11:19 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 14 May 2025 02:03:21 +0000 (11:03 +0900)
e_comp_wl_sub_below_object_get is deprecated.
It always returns null.

Change-Id: I5683d1081284a8e9f9c8eac38cbf183fe2b18494

src/bin/server/e_comp_wl.c
src/include/e_comp_wl.h

index 0ae87432102962db40770a5ea262fa5227408842..2bf8bd7e4739d4716402d3a1ad483166190d2102 100644 (file)
@@ -4560,7 +4560,7 @@ e_comp_wl_sub_below_list_pending_get(E_Client *ec)
    return ec->comp_data->sub.below_list_pending;
 }
 
-E_API Evas_Object *
+E_DEPRECATED E_API Evas_Object *
 e_comp_wl_sub_below_object_get(E_Client *ec)
 {
    if (!ec) return NULL;
index 8aefd02650de73c40bf68d03746ff8f334f831d1..a292b57a9a42eb40221342f98683b0d79155483f 100644 (file)
@@ -396,7 +396,7 @@ struct _E_Comp_Wl_Client_Data
 
         Eina_List *below_list;
         Eina_List *below_list_pending;
-        Evas_Object *below_obj;
+        E_DEPRECATED Evas_Object *below_obj;
 
         Eina_Bool restacking : 1;
      } sub;
@@ -614,7 +614,7 @@ E_API void                e_comp_wl_shell_surface_set(E_Client *ec, struct wl_re
 E_API Eina_List   *e_comp_wl_sub_list_get(E_Client *ec);
 E_API Eina_List   *e_comp_wl_sub_below_list_get(E_Client *ec);
 E_API Eina_List   *e_comp_wl_sub_below_list_pending_get(E_Client *ec);
-E_API Evas_Object *e_comp_wl_sub_below_object_get(E_Client *ec);
+E_DEPRECATED  Evas_Object *e_comp_wl_sub_below_object_get(E_Client *ec);
 
 E_API E_Comp_Wl_Subsurf_Data    *e_comp_wl_sub_data_get(E_Client *ec);
 EINA_DEPRECATED E_API E_Comp_Wl_Buffer_Viewport *e_comp_wl_sub_data_cached_buffer_viewport_get(E_Client *ec);