From d5d1a50d5a08f446b0d5dfb1d6d7bb49c4f6738d Mon Sep 17 00:00:00 2001 From: Sebastian Dransfeld Date: Sun, 25 Mar 2007 13:46:57 +0000 Subject: [PATCH] E_App -> Efreet_Desktop SVN revision: 29118 --- src/bin/e_actions.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c index aebecf232..7f32bc4ea 100644 --- a/src/bin/e_actions.c +++ b/src/bin/e_actions.c @@ -1406,7 +1406,7 @@ ACT_FN_GO(app) { if (params) { - E_App *a = NULL; + Efreet_Desktop *desktop = NULL; char *p, *p2; p2 = alloca(strlen(params) + 1); @@ -1416,15 +1416,15 @@ ACT_FN_GO(app) { *p = 0; if (!strcmp(p2, "file:")) - a = e_app_file_find(p + 1); + desktop = efreet_util_desktop_file_id_find(p + 1); else if (!strcmp(p2, "name:")) - a = e_app_name_find(p + 1); + desktop = efreet_util_desktop_name_find(p + 1); else if (!strcmp(p2, "generic:")) - a = e_app_generic_find(p + 1); + desktop = efreet_util_desktop_generic_name_find(p + 1); else if (!strcmp(p2, "exe:")) - a = e_app_exe_find(p + 1); - if (a) - e_app_exec(zone, a, NULL, NULL, "action/app"); + desktop = efreet_util_desktop_exec_find(p + 1); + if (desktop) + e_exec(zone, desktop, NULL, NULL, "action/app"); } } }