e_focus: replace the function 84/320984/1
authorSooChan Lim <sc1.lim@samsung.com>
Tue, 11 Mar 2025 09:13:04 +0000 (18:13 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Wed, 12 Mar 2025 09:26:31 +0000 (18:26 +0900)
use e_policy_client_check_really_iconified instead of e_client_check_really_iconified

Change-Id: I59e700e038f14fc53ad16720af2ea61a9fb50030

src/bin/windowmgr/e_focus_policy_history.c
src/bin/windowmgr/e_focus_policy_topmost.c

index 05b6f76610a792e6f53729577c55b548c7f9bfef..cd2ab110d07f5fbdd09b1b09f57f120ba2023201 100644 (file)
@@ -212,7 +212,7 @@ _e_focus_policy_history_candidate_focus_get(E_Focus_Policy_History *history_poli
         if (ec->bg_state) continue;
 
         if (!(cec = e_client_check_obscured_by_children_group(ec)) ||
-            e_client_check_really_iconified(cec))
+            e_policy_client_check_really_iconified(cec))
           {
              if (e_client_visibility_get(ec) != E_VISIBILITY_UNOBSCURED) continue;
              if (e_policy_client_fully_covering_above_ec_get(ec)) continue;
@@ -250,7 +250,7 @@ _e_focus_policy_history_focus_can_take_by_vis_obscured(E_Focus_Policy_History *h
    switch (e_client_visibility_get(ec))
      {
        case E_VISIBILITY_UNKNOWN:
-           if (e_client_check_really_iconified(ec))
+           if (e_policy_client_check_really_iconified(ec))
              return EINA_FALSE;
 
            if (!e_view_client_visible_get(e_client_view_get(ec)) &&
@@ -259,7 +259,7 @@ _e_focus_policy_history_focus_can_take_by_vis_obscured(E_Focus_Policy_History *h
            break;
 
        case E_VISIBILITY_FULLY_OBSCURED:
-           if (e_client_check_really_iconified(ec))
+           if (e_policy_client_check_really_iconified(ec))
              return EINA_FALSE;
            break;
 
index 38190d4e149bfd7edc0942173e6c611a3c8ab271..37ad5c0168e32307e2161380291f4cc50109b7ff 100644 (file)
@@ -70,7 +70,7 @@ _e_focus_policy_topmost_focus_can_take_by_vis_obscured(E_Focus_Policy_Topmost *t
      {
        case E_VISIBILITY_UNKNOWN:
        case E_VISIBILITY_FULLY_OBSCURED:
-           if (e_client_check_really_iconified(ec))
+           if (e_policy_client_check_really_iconified(ec))
              return EINA_FALSE;
            break;
        case E_VISIBILITY_UNOBSCURED: