elementary: update efl_quicklaunch_fallback to use the new EFL exit API.

This commit is contained in:
Cedric Bail 2017-10-27 15:43:23 -07:00
parent 3e41da66a8
commit 03df8483f6
2 changed files with 8 additions and 10 deletions

View File

@ -158,6 +158,12 @@ 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 */
@ -311,14 +317,6 @@ EAPI void elm_quicklaunch_cleanup(void);
*/
EAPI int elm_quicklaunch_fallback(int argc, char **argv);
#ifdef EFL_BETA_API_SUPPORT
/**
* Exposed symbol used only by macros and should not be used by apps
* @since 1.18 (as beta)
*/
EAPI int efl_quicklaunch_fallback(int argc, char **argv);
#endif
/**
* Exposed symbol used only by macros and should not be used by apps
*/

View File

@ -1285,7 +1285,7 @@ elm_quicklaunch_fallback(int argc,
return ret;
}
EAPI int
EAPI Eina_Value *
efl_quicklaunch_fallback(int argc,
char **argv)
{
@ -1299,7 +1299,7 @@ efl_quicklaunch_fallback(int argc,
return efl_loop_begin(ecore_main_loop_get());
}
return 255;
return eina_value_uchar_new(255);
}
EAPI char *