elementary: actually we do not need efl_quicklaunch_fallback.

This commit is contained in:
Cedric Bail 2017-10-27 15:46:26 -07:00
parent a14b657399
commit ba01c5c3eb
2 changed files with 0 additions and 23 deletions

View File

@ -176,12 +176,6 @@ extern EAPI double _elm_startup_time;
*/
EAPI void efl_exit(int exit_code);
/**
* Exposed symbol used only by macros and should not be used by apps
* @since 1.18 (as beta)
*/
EAPI Eina_Value *efl_quicklaunch_fallback(int argc, char **argv);
#endif /* EFL_BETA_API_SUPPORT */

View File

@ -1285,23 +1285,6 @@ elm_quicklaunch_fallback(int argc,
return ret;
}
EAPI Eina_Value *
efl_quicklaunch_fallback(int argc,
char **argv)
{
/* int ret; */
char cwd[PATH_MAX];
elm_quicklaunch_init(argc, argv);
elm_quicklaunch_sub_init(argc, argv);
if (efl_quicklaunch_prepare(argc, argv, getcwd(cwd, sizeof(cwd))))
{
efl_event_callback_add(ecore_main_loop_get(), EFL_LOOP_EVENT_ARGUMENTS, qre_main, NULL);
return efl_loop_begin(ecore_main_loop_get());
}
return eina_value_uchar_new(255);
}
EAPI char *
elm_quicklaunch_exe_path_get(const char *exe, const char *cwd)
{