From afff2a80d75149da7b8c9a1ee12cebab8b9c7d6a Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 4 Sep 2006 11:50:23 +0000 Subject: [PATCH] Remove already done FIXME's. SVN revision: 25440 --- src/bin/e_apps.c | 4 ---- src/bin/e_int_config_apps.c | 3 --- 2 files changed, 7 deletions(-) diff --git a/src/bin/e_apps.c b/src/bin/e_apps.c index 63c8f796c..ad47acf18 100644 --- a/src/bin/e_apps.c +++ b/src/bin/e_apps.c @@ -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)) { diff --git a/src/bin/e_int_config_apps.c b/src/bin/e_int_config_apps.c index 3817877cb..0d8780ff0 100644 --- a/src/bin/e_int_config_apps.c +++ b/src/bin/e_int_config_apps.c @@ -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 -