Remove already done FIXME's.

SVN revision: 25440
This commit is contained in:
David Walter Seikel 2006-09-04 11:50:23 +00:00
parent 513451f08c
commit afff2a80d7
2 changed files with 0 additions and 7 deletions

View File

@ -588,7 +588,6 @@ _e_app_files_download(Evas_List *files)
file = l->data;
if (!_e_app_is_eapp(file)) continue;
// FIXME: onefang, check this for full path compliance.
snprintf(buf, sizeof(buf), "%s/%s", _e_apps_path_all,
ecore_file_get_file(file));
if (!ecore_file_download(file, buf, NULL, NULL, NULL)) continue;
@ -648,7 +647,6 @@ e_app_prepend_relative(E_App *add, E_App *before)
if (!strncmp(add->path, _e_apps_path_trash, strlen(_e_apps_path_trash)))
{
/* Move to all */
// FIXME: onefang, check this for full path compliance.
snprintf(buf, sizeof(buf), "%s/%s", _e_apps_path_all, ecore_file_get_file(add->path));
if (ecore_file_exists(buf))
snprintf(buf, sizeof(buf), "%s/%s", before->parent->path, ecore_file_get_file(add->path));
@ -675,7 +673,6 @@ e_app_append(E_App *add, E_App *parent)
if (!strncmp(add->path, _e_apps_path_trash, strlen(_e_apps_path_trash)))
{
/* Move to all */
// FIXME: onefang, check this for full path compliance.
snprintf(buf, sizeof(buf), "%s/%s", _e_apps_path_all, ecore_file_get_file(add->path));
if (ecore_file_exists(buf))
snprintf(buf, sizeof(buf), "%s/%s", parent->path, ecore_file_get_file(add->path));
@ -787,7 +784,6 @@ e_app_remove(E_App *a)
a->parent->subapps = evas_list_remove(a->parent->subapps, a);
/* Check if this app is in a repository or in the parents dir */
// FIXME: onefang, check this for full path compliance.
snprintf(buf, sizeof(buf), "%s/%s", a->parent->path, ecore_file_get_file(a->path));
if (ecore_file_exists(buf))
{

View File

@ -7,9 +7,6 @@
#define MOD_ENABLED 1
/* TODO:
* FDO menu generation puts symlinks to .desktops in /all/,
* if we edit one of those, replace symlink with resulting .desktop,
* include original path in new .desktop.
* Filtering/sorting of left side to make managing thousands of apps easy.
*
* These things require support from e_fm -