From ab0ab69e901b1ec41a76faa23c0aeab1986ab1a5 Mon Sep 17 00:00:00 2001 From: Seungjin Park Date: Mon, 12 Dec 2016 11:21:19 +0900 Subject: [PATCH] e_policy_wl: change stack_changed_send function from static to E_API Signed-off-by: Seungjin Park Change-Id: Id3d710117d48f3092a2e2995e775b30bf8e27ab3 --- src/bin/e_policy_wl.c | 6 +++--- src/bin/e_policy_wl.h | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/bin/e_policy_wl.c b/src/bin/e_policy_wl.c index c7c05a6063..6d5af92f30 100644 --- a/src/bin/e_policy_wl.c +++ b/src/bin/e_policy_wl.c @@ -1273,8 +1273,8 @@ _tzpol_iface_cb_activate(struct wl_client *client EINA_UNUSED, struct wl_resourc e_policy_stack_check_above_lockscreen(ec, ec->layer, NULL, EINA_TRUE); } -static void -_e_policy_wl_stack_changed_send(E_Client *ec) +E_API void +e_policy_wl_stack_changed_send(E_Client *ec) { E_Client *above = NULL; E_Client *below = NULL; @@ -1372,7 +1372,7 @@ _tzpol_iface_cb_activate_below_by_res_id(struct wl_client *client EINA_UNUSED, s if (!e_client_first_mapped_get(ec)) e_client_post_raise_lower_set(ec, EINA_FALSE, EINA_FALSE); - _e_policy_wl_stack_changed_send(ec); + e_policy_wl_stack_changed_send(ec); } static void diff --git a/src/bin/e_policy_wl.h b/src/bin/e_policy_wl.h index 9e7b2b7d0c..cb98b02909 100644 --- a/src/bin/e_policy_wl.h +++ b/src/bin/e_policy_wl.h @@ -50,5 +50,7 @@ void e_policy_wl_indicator_flick_send(E_Client *ec); /* cbhm */ EINTERN void e_policy_wl_clipboard_data_selected_send(E_Client *ec); +/* aux_message */ +E_API void e_policy_wl_stack_changed_send(E_Client *ec); #endif /* E_MOD_WL_H */ -- 2.34.1