diff options
author | Cedric Bail <cedric@osg.samsung.com> | 2017-10-27 15:46:26 -0700 |
---|---|---|
committer | Cedric Bail <cedric@osg.samsung.com> | 2017-10-27 15:46:26 -0700 |
commit | ba01c5c3ebf4646b2196b00b7e3c99c823c1be5e (patch) | |
tree | b5262ee24497aa76e822f4b42311b8fa6279c5b6 /src | |
parent | a14b6573994dd0489085505c2da64b4e9547cf43 (diff) |
elementary: actually we do not need efl_quicklaunch_fallback.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/elementary/elm_general.h | 6 | ||||
-rw-r--r-- | src/lib/elementary/elm_main.c | 17 |
2 files changed, 0 insertions, 23 deletions
diff --git a/src/lib/elementary/elm_general.h b/src/lib/elementary/elm_general.h index 9324f2a77d..3367a96f3b 100644 --- a/src/lib/elementary/elm_general.h +++ b/src/lib/elementary/elm_general.h | |||
@@ -176,12 +176,6 @@ extern EAPI double _elm_startup_time; | |||
176 | */ | 176 | */ |
177 | EAPI void efl_exit(int exit_code); | 177 | EAPI void efl_exit(int exit_code); |
178 | 178 | ||
179 | /** | ||
180 | * Exposed symbol used only by macros and should not be used by apps | ||
181 | * @since 1.18 (as beta) | ||
182 | */ | ||
183 | EAPI Eina_Value *efl_quicklaunch_fallback(int argc, char **argv); | ||
184 | |||
185 | #endif /* EFL_BETA_API_SUPPORT */ | 179 | #endif /* EFL_BETA_API_SUPPORT */ |
186 | 180 | ||
187 | 181 | ||
diff --git a/src/lib/elementary/elm_main.c b/src/lib/elementary/elm_main.c index c0d431e0e5..9ce1423192 100644 --- a/src/lib/elementary/elm_main.c +++ b/src/lib/elementary/elm_main.c | |||
@@ -1285,23 +1285,6 @@ elm_quicklaunch_fallback(int argc, | |||
1285 | return ret; | 1285 | return ret; |
1286 | } | 1286 | } |
1287 | 1287 | ||
1288 | EAPI Eina_Value * | ||
1289 | efl_quicklaunch_fallback(int argc, | ||
1290 | char **argv) | ||
1291 | { | ||
1292 | /* int ret; */ | ||
1293 | char cwd[PATH_MAX]; | ||
1294 | elm_quicklaunch_init(argc, argv); | ||
1295 | elm_quicklaunch_sub_init(argc, argv); | ||
1296 | if (efl_quicklaunch_prepare(argc, argv, getcwd(cwd, sizeof(cwd)))) | ||
1297 | { | ||
1298 | efl_event_callback_add(ecore_main_loop_get(), EFL_LOOP_EVENT_ARGUMENTS, qre_main, NULL); | ||
1299 | return efl_loop_begin(ecore_main_loop_get()); | ||
1300 | } | ||
1301 | |||
1302 | return eina_value_uchar_new(255); | ||
1303 | } | ||
1304 | |||
1305 | EAPI char * | 1288 | EAPI char * |
1306 | elm_quicklaunch_exe_path_get(const char *exe, const char *cwd) | 1289 | elm_quicklaunch_exe_path_get(const char *exe, const char *cwd) |
1307 | { | 1290 | { |