add code to initialize Ecore_Wayland

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-10-14 14:52:20 -04:00
parent 0342998c79
commit 234953ad3e
1 changed files with 7 additions and 0 deletions

View File

@ -218,6 +218,13 @@ e_comp_wl_init(void)
return EINA_FALSE;
}
/* try to init ecore_wayland */
if (!ecore_wl_init(NULL))
{
e_error_message_show(_("Enlightenment cannot initialize Ecore_Wayland!\n"));
return EINA_FALSE;
}
return EINA_TRUE;
}