Remove calls to ecore_wl_init and ecore_wl_shutdown.

NB: These calls are NOT needed here (they setup and tear down the
actual wayland display fd connections, and are not necessary in order
to use ecore_wl functions).

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-08-01 12:48:17 +01:00
parent d163e5df1f
commit 4d54c97864
1 changed files with 0 additions and 3 deletions

View File

@ -136,8 +136,6 @@ im_module_create()
static Eina_Bool
im_module_init(void)
{
if (!ecore_wl_init(NULL)) return EINA_FALSE;
_ecore_imf_wayland_log_dom =
eina_log_domain_register("ecore_imf_wayland", EINA_COLOR_YELLOW);
@ -151,7 +149,6 @@ im_module_init(void)
static void
im_module_shutdown(void)
{
ecore_wl_shutdown();
EINA_LOG_DOM_INFO(_ecore_imf_wayland_log_dom, "im module shutdown");
}