From a4db6d6485ffbf770899b67a880f446cee37c7d9 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Tue, 14 Oct 2014 14:21:02 -0400 Subject: [PATCH] rename compositor delete callback Signed-off-by: Chris Michael --- src/bin/e_comp_wl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index c26034dda..42f508a59 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -32,7 +32,7 @@ _e_comp_wl_compositor_cb_bind(struct wl_client *client, void *data, uint32_t ver } static void -_e_comp_wl_cb_del(E_Comp *comp) +_e_comp_wl_compositor_cb_del(E_Comp *comp) { E_Comp_Data *cdata; @@ -54,7 +54,7 @@ _e_comp_wl_compositor_create(void) { comp = e_comp_new(); comp->comp_type = E_PIXMAP_TYPE_WL; - E_OBJECT_DEL_SET(comp, _e_comp_wl_cb_del); + E_OBJECT_DEL_SET(comp, _e_comp_wl_compositor_cb_del); } /* create new compositor data */