Remove old code.

SVN revision: 29004
This commit is contained in:
Sebastian Dransfeld 2007-03-24 11:29:12 +00:00
parent 49f856b1f6
commit a5dd53e01c
2 changed files with 0 additions and 14 deletions

View File

@ -72,15 +72,6 @@ main(int argc, char **argv)
ecore_file_init();
ecore_ipc_init();
/* DON'T need this - .desktop files support removed
ecore_desktop_init();
ecore_desktop_paths_extras_clear();
ecore_desktop_paths_prepend_user(ECORE_DESKTOP_PATHS_ICONS, "~/.e/e/icons");
snprintf(buf, sizeof(buf), "%s/data/icons", e_prefix_data_get());
ecore_desktop_paths_append_system(ECORE_DESKTOP_PATHS_ICONS, buf);
ecore_desktop_paths_regen();
*/
snprintf(_thumbdir, sizeof(_thumbdir), "%s/.e/e/fileman/thumbnails",
e_user_homedir_get());
ecore_file_mkpath(_thumbdir);
@ -93,9 +84,6 @@ main(int argc, char **argv)
_e_ipc_server = NULL;
}
/* DON'T need this - .desktop support removed
ecore_desktop_shutdown();
*/
ecore_ipc_shutdown();
ecore_file_shutdown();
ecore_evas_shutdown();

View File

@ -239,7 +239,6 @@ _ibar_new(Evas *evas, const char *dir)
IBar *b;
char buf[4096];
ecore_desktop_instrumentation_reset();
b = E_NEW(IBar, 1);
b->o_box = e_box_add(evas);
e_box_homogenous_set(b->o_box, 1);
@ -258,7 +257,6 @@ _ibar_new(Evas *evas, const char *dir)
if (b->apps) e_app_subdir_scan(b->apps, 0);
e_app_change_callback_add(_ibar_cb_app_change, b);
_ibar_fill(b);
ecore_desktop_instrumentation_print();
return b;
}