call elm_init otherwise applications that still did not will fail.

SVN revision: 47499
This commit is contained in:
Gustavo Sverzut Barbieri 2010-03-27 01:24:40 +00:00
parent 64bc9152d5
commit c83883b8ef
1 changed files with 6 additions and 0 deletions

View File

@ -156,6 +156,12 @@ static Edje_External_Type_Info elm_external_types[] =
static Eina_Bool
elm_mod_init(void)
{
int argc = 0;
char **argv = NULL;
ecore_app_args_get(&argc, &argv);
elm_init(argc, argv);
_elm_log_dom = eina_log_domain_register("elm-externals", EINA_COLOR_LIGHTBLUE);
edje_external_type_array_register(elm_external_types);
return EINA_TRUE;