me. valgrind. happy fun times together. methinks we should hasve more

people do this.
This commit is contained in:
Carsten Haitzler 2013-03-30 14:11:07 +09:00
parent a0d4c33691
commit c66e21aa9a
2 changed files with 12 additions and 11 deletions

View File

@ -813,6 +813,17 @@ main(int argc, char **argv)
e_container_all_freeze();
TS("E_Container Freeze Done");
if (e_config->show_splash)
e_init_status_set(_("Setup DND"));
TS("E_Dnd Init");
if (!e_dnd_init())
{
e_error_message_show(_("Enlightenment cannot set up its dnd system.\n"));
_e_main_shutdown(-1);
}
TS("E_Dnd Init Done");
_e_main_shutdown_push(e_dnd_shutdown);
if (e_config->show_splash)
e_init_status_set(_("Setup Filemanager"));
TS("E_Fm2 Init");
@ -835,17 +846,6 @@ main(int argc, char **argv)
TS("E_Msg Init Done");
_e_main_shutdown_push(e_msg_shutdown);
if (e_config->show_splash)
e_init_status_set(_("Setup DND"));
TS("E_Dnd Init");
if (!e_dnd_init())
{
e_error_message_show(_("Enlightenment cannot set up its dnd system.\n"));
_e_main_shutdown(-1);
}
TS("E_Dnd Init Done");
_e_main_shutdown_push(e_dnd_shutdown);
if (e_config->show_splash)
e_init_status_set(_("Setup Grab Input Handling"));
TS("E_Grabinput Init");

View File

@ -1294,6 +1294,7 @@ _e_menu_free(E_Menu *m)
}
if (m->header.title) eina_stringshare_del(m->header.title);
if (m->header.icon_file) eina_stringshare_del(m->header.icon_file);
if (m->dangling_job) ecore_job_del(m->dangling_job);
free(m);
}