From ca7087b443016e562240404dffff9dc5130c016f Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 28 Apr 2015 13:25:53 -0400 Subject: [PATCH] update xwayland for api changes --- src/modules/xwayland/e_mod_main.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/modules/xwayland/e_mod_main.c b/src/modules/xwayland/e_mod_main.c index 0f887f7..92bad9a 100644 --- a/src/modules/xwayland/e_mod_main.c +++ b/src/modules/xwayland/e_mod_main.c @@ -273,23 +273,19 @@ EAPI E_Module_Api e_modapi = { E_MODULE_API_VERSION, "XWayland" }; EAPI void * e_modapi_init(E_Module *m) { - E_Comp *comp; char disp[8]; DBG("LOAD XWAYLAND MODULE"); - /* try to get the running compositor */ - if (!(comp = e_comp_get(NULL))) return NULL; - /* make sure it's a wayland compositor */ - if (comp->comp_type != E_PIXMAP_TYPE_WL) return NULL; + if (e_comp->comp_type != E_PIXMAP_TYPE_WL) return NULL; /* alloc space for server struct */ if (!(exs = calloc(1, sizeof(E_XWayland_Server)))) return NULL; /* record wayland display */ - exs->wl_disp = comp->wl_comp_data->wl.disp; + exs->wl_disp = e_comp->wl_comp_data->wl.disp; /* default display to zero */ exs->disp = 0; -- 2.7.4