e_policy_wl: change stack_changed_send function from static to E_API 59/103959/2
authorSeungjin Park <sj8808.park@samsung.com>
Mon, 12 Dec 2016 02:21:19 +0000 (11:21 +0900)
committerGwanglim Lee <gl77.lee@samsung.com>
Mon, 12 Dec 2016 05:14:29 +0000 (21:14 -0800)
Signed-off-by: Seungjin Park <sj8808.park@samsung.com>
Change-Id: Id3d710117d48f3092a2e2995e775b30bf8e27ab3

src/bin/e_policy_wl.c
src/bin/e_policy_wl.h

index c7c05a6063ec95ce9068299b2b5baf0ddf9d5a36..6d5af92f307c9d4cd21285a721f0d146bfabef2b 100644 (file)
@@ -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
index 9e7b2b7d0cd0c2c2b76d4ff86f371e67b6ae5fa6..cb98b029095a2a8e416d5046a42a43c3c6a8459a 100644 (file)
@@ -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 */