ecore-wl2: Rename local function and make it static

As this function is not called from anywhere outside of
ecore_wl2_window.c file, this can be declared static.

NB: This patch also changes the function name to match the library
(ecore_wl2).

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-08-03 10:15:41 -04:00
parent 9368eedd35
commit 0bd8259da8
1 changed files with 4 additions and 3 deletions

View File

@ -702,10 +702,11 @@ ecore_wl2_window_hide(Ecore_Wl2_Window *window)
window->configure_ack = NULL; window->configure_ack = NULL;
} }
void static void
_ecore_wl_window_aux_hint_free(Ecore_Wl2_Window *win) _ecore_wl2_window_aux_hint_free(Ecore_Wl2_Window *win)
{ {
const char *supported; const char *supported;
EINA_LIST_FREE(win->supported_aux_hints, supported) EINA_LIST_FREE(win->supported_aux_hints, supported)
if (supported) eina_stringshare_del(supported); if (supported) eina_stringshare_del(supported);
} }
@ -728,7 +729,7 @@ ecore_wl2_window_free(Ecore_Wl2_Window *window)
EINA_INLIST_FOREACH_SAFE(window->subsurfs, tmp, subsurf) EINA_INLIST_FOREACH_SAFE(window->subsurfs, tmp, subsurf)
_ecore_wl2_subsurf_free(subsurf); _ecore_wl2_subsurf_free(subsurf);
_ecore_wl_window_aux_hint_free(window); _ecore_wl2_window_aux_hint_free(window);
if (window->uuid && window->surface && window->display->wl.session_recovery) if (window->uuid && window->surface && window->display->wl.session_recovery)
zwp_e_session_recovery_destroy_uuid(window->display->wl.session_recovery, zwp_e_session_recovery_destroy_uuid(window->display->wl.session_recovery,