e_focus_policy_history: change the name of callback function 75/297575/1
authorSooChan Lim <sc1.lim@samsung.com>
Fri, 18 Aug 2023 04:34:28 +0000 (13:34 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Mon, 21 Aug 2023 07:58:40 +0000 (16:58 +0900)
follow the naming rule of e_focus_policy_history

Change-Id: Id744a5884e1846ba56a6eb99c8b5be71960c7ad9

src/bin/e_focus_policy_history.c

index 3cab83d..7a609b9 100644 (file)
@@ -755,7 +755,7 @@ _focus_policy_history_hook_cb_client_eval_end(void *data, E_Client *ec)
 }
 
 static Eina_Bool
-_focus_policy_hook_history_cb_comp_object_lower(void *data, E_Client *ec)
+_focus_policy_history_hook_cb_comp_object_lower(void *data, E_Client *ec)
 {
    E_Focus_Policy_History *history_policy;
 
@@ -1060,7 +1060,7 @@ e_focus_policy_iface_history_new(E_Zone* zone)
    E_LIST_HOOK_APPEND(history_policy->ec_hooks, E_CLIENT_HOOK_EVAL_END, _focus_policy_history_hook_cb_client_eval_end, history_policy);
 
    // e_comp_object hooks
-   E_COMP_COMP_HOOK_APPEND(history_policy->co_hooks, E_COMP_OBJECT_HOOK_LOWER, _focus_policy_hook_history_cb_comp_object_lower, history_policy);
+   E_COMP_COMP_HOOK_APPEND(history_policy->co_hooks, E_COMP_OBJECT_HOOK_LOWER, _focus_policy_history_hook_cb_comp_object_lower, history_policy);
    E_COMP_COMP_HOOK_APPEND(history_policy->co_hooks, E_COMP_OBJECT_HOOK_SHOW,  _focus_policy_history_hook_cb_comp_object_show, history_policy);
    E_COMP_COMP_HOOK_APPEND(history_policy->co_hooks, E_COMP_OBJECT_HOOK_HIDE,  _focus_policy_history_hook_cb_comp_object_hide, history_policy);