e_main: Initialize UUID store during E startup

I have been running with this enabled for a while and it should not make
trouble but if it does simply reverting this one if totally fine while I'm
away.
This commit is contained in:
Stefan Schmidt 2014-03-25 11:06:25 +01:00 committed by Stefan Schmidt
parent 2d3fae79a0
commit bbc744490b
1 changed files with 12 additions and 0 deletions

View File

@ -517,6 +517,18 @@ main(int argc, char **argv)
_e_main_shutdown_push(e_alert_shutdown);
#endif
#ifdef HAVE_WAYLAND
/* init uuid store for window/surface properties */
TS("E_UUID_Store Init");
if (!e_uuid_store_init())
{
e_error_message_show(_("Enlightenment cannot initialize its UUID store.\n"));
_e_main_shutdown(-1);
}
TS("E_UUID_Store Init Done");
_e_main_shutdown_push(e_uuid_store_shutdown);
#endif
TS("E_Configure Init");
e_configure_init();
TS("E_Configure Init Done");