E_App -> Efreet_Desktop

SVN revision: 29118
This commit is contained in:
Sebastian Dransfeld 2007-03-25 13:46:57 +00:00
parent 212f526f81
commit d5d1a50d5a
1 changed files with 7 additions and 7 deletions

View File

@ -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");
}
}
}