From 7922ac44be93b8473e24f43791324988ba311f04 Mon Sep 17 00:00:00 2001 From: Seunghun Lee Date: Wed, 9 Mar 2016 14:00:35 +0900 Subject: [PATCH] e_mod_wl: don't need to use pixmap for aux_hint. It is better to use E_Client, since the aux_hint has more to do with E_Client. Change-Id: I5245236632ef3e4e4019aa8d437349d8dde680cf --- src/e_mod_wl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/e_mod_wl.c b/src/e_mod_wl.c index 3483dc4..664b7d1 100644 --- a/src/e_mod_wl.c +++ b/src/e_mod_wl.c @@ -1753,7 +1753,7 @@ _tzpol_iface_cb_aux_hint_add(struct wl_client *client EINA_UNUSED, struct wl_res ec = wl_resource_get_user_data(surf); EINA_SAFETY_ON_NULL_RETURN(ec); - res = e_hints_aux_hint_add_with_pixmap(ec->pixmap, id, name, value); + res = e_hints_aux_hint_add(ec, id, name, value); ELOGF("TZPOL", "HINT_ADD|res_tzpol:0x%08x|id:%d, name:%s, val:%s, res:%d", NULL, NULL, (unsigned int)res_tzpol, id, name, value, res); @@ -1770,7 +1770,7 @@ _tzpol_iface_cb_aux_hint_change(struct wl_client *client EINA_UNUSED, struct wl_ ec = wl_resource_get_user_data(surf); EINA_SAFETY_ON_NULL_RETURN(ec); - res = e_hints_aux_hint_change_with_pixmap(ec->pixmap, id, value); + res = e_hints_aux_hint_change(ec, id, value); ELOGF("TZPOL", "HINT_CHANGE|res_tzpol:0x%08x|id:%d, val:%s, result:%d", NULL, NULL, (unsigned int)res_tzpol, id, value, res); @@ -1787,7 +1787,7 @@ _tzpol_iface_cb_aux_hint_del(struct wl_client *client EINA_UNUSED, struct wl_res ec = wl_resource_get_user_data(surf); EINA_SAFETY_ON_NULL_RETURN(ec); - res = e_hints_aux_hint_del_with_pixmap(ec->pixmap, id); + res = e_hints_aux_hint_del(ec, id); ELOGF("TZPOL", "HINT_DEL|res_tzpol:0x%08x|id:%d, result:%d", NULL, NULL, (unsigned int)res_tzpol, id, res); } -- 2.7.4