e_comp: remove e_comp_util_wins_print 45/321345/1
authorSooChan Lim <sc1.lim@samsung.com>
Tue, 18 Mar 2025 07:39:54 +0000 (16:39 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Wed, 19 Mar 2025 05:55:18 +0000 (14:55 +0900)
It is not used anymore.

Change-Id: I75add6e361356e2d60383db6049b09ff090eaf34

src/bin/compmgr/e_comp.c
src/bin/compmgr/e_comp_intern.h
src/bin/compmgr/e_comp_object.c

index f8cd2554272baa08cb1ffeb1b235d7ad2824ade0..a48720f743ca1236f1b9befa84948802c7d3e123 100644 (file)
@@ -458,37 +458,6 @@ e_comp_config_get(void)
    return conf;
 }
 
-EINTERN void
-e_comp_util_wins_print(void)
-{
-   Evas_Object *o;
-
-   o = evas_object_top_get(e_comp->evas);
-   while (o)
-     {
-        E_Client *ec;
-        int x, y, w, h;
-
-        ec = evas_object_data_get(o, "E_Client");
-        evas_object_geometry_get(o, &x, &y, &w, &h);
-        fprintf(stderr, "LAYER %d  ", evas_object_layer_get(o));
-        if (ec)
-#if defined(__cplusplus) || defined(c_plusplus)
-          fprintf(stderr, "EC%s%s:  %p - '%s:%s' || %d,%d @ %dx%d\n",
-                  ec->override ? "O" : "", ec->focused ? "*" : "", ec,
-                  e_client_util_name_get(ec) ?: ec->icccm.name, ec->icccm.cpp_class, x, y, w, h);
-#else
-          fprintf(stderr, "EC%s%s:  %p - '%s:%s' || %d,%d @ %dx%d\n",
-                  ec->override ? "O" : "", ec->focused ? "*" : "", ec,
-                  e_client_util_name_get(ec) ?: ec->icccm.name, ec->icccm.class, x, y, w, h);
-#endif
-       else
-          fprintf(stderr, "OBJ: %p - %s || %d,%d @ %dx%d\n", o, evas_object_name_get(o), x, y, w, h);
-        o = evas_object_below_get(o);
-     }
-   fputc('\n', stderr);
-}
-
 EINTERN void
 e_comp_ignore_win_add(E_Pixmap_Type type, Ecore_Window win)
 {
index 9b4466b157d65654a4df2266f92ea77ee16939ae..4a9aa25ed5a93912642e891160c1ba0cc4e4d4be 100644 (file)
@@ -12,7 +12,6 @@ EINTERN E_Comp       *e_comp_get(void);
 
 EINTERN int           e_comp_internal_save(void);
 EINTERN void          e_comp_client_post_update_add(E_Client *ec);
-EINTERN void          e_comp_util_wins_print(void);
 EINTERN void          e_comp_ignore_win_add(E_Pixmap_Type type, Ecore_Window win);
 EINTERN void          e_comp_ignore_win_del(E_Pixmap_Type type, Ecore_Window win);
 EINTERN Eina_Bool     e_comp_ignore_win_find(Ecore_Window win);
index bf04aa906ec612cfa003e9aaaa791501f26e3efd..df185ae6be84a5c11eff20f8b0c51f844ff9e8c1 100644 (file)
@@ -1022,7 +1022,7 @@ _e_comp_object_setup(E_Comp_Object *cw, E_Comp *comp)
    edje_object_signal_callback_add(cw->shobj, "e,action,*,done", "e", _e_comp_object_done_defer, cw);
    evas_object_intercept_color_set_callback_add(cw->shobj, _e_comp_intercept_shobj_color_set, cw);
 
-   /* name objects appropriately for nicer printing when using e_comp_util_wins_print() */
+   /* name objects appropriately for nicer printing */
    if (cw->ec->override)
      {
         evas_object_name_set(cw->shobj, "cw->shobj::WINDOW");