Efreet: use ecore_exe_run() on Windows, as it is available for quite some time now

SVN revision: 73294
This commit is contained in:
Vincent Torri 2012-07-04 18:36:34 +00:00
parent e707290273
commit 68094c6877
1 changed files with 5 additions and 4 deletions

View File

@ -240,13 +240,14 @@ efreet_desktop_command_progress_get(Efreet_Desktop *desktop, Eina_List *files,
}
static void *
efreet_desktop_exec_cb(void *data, Efreet_Desktop *desktop __UNUSED__,
char *exec, int remaining __UNUSED__)
efreet_desktop_exec_cb(void *data,
Efreet_Desktop *desktop __UNUSED__,
char *exec,
int remaining __UNUSED__)
{
#ifndef _WIN32
ecore_exe_run(exec, data);
free(exec);
#endif
return NULL;
}