diff --git a/src/lib/ecore/ecore_main.c b/src/lib/ecore/ecore_main.c index 09f7685763..97db651e6d 100644 --- a/src/lib/ecore/ecore_main.c +++ b/src/lib/ecore/ecore_main.c @@ -2725,18 +2725,6 @@ EAPI Eo *ecore_main_loop_get(void) return _mainloop_singleton; } -EOLIAN static void -_ecore_mainloop_select_func_set(Eo *obj EINA_UNUSED, Ecore_Mainloop_Data *pd EINA_UNUSED, Ecore_Select_Function select_func) -{ - ecore_main_loop_select_func_set(select_func); -} - -EOLIAN static Ecore_Select_Function -_ecore_mainloop_select_func_get(Eo *obj EINA_UNUSED, Ecore_Mainloop_Data *pd EINA_UNUSED) -{ - return ecore_main_loop_select_func_get(); -} - EOLIAN static void _ecore_mainloop_iterate(Eo *obj EINA_UNUSED, Ecore_Mainloop_Data *pd EINA_UNUSED) { diff --git a/src/lib/ecore/ecore_mainloop.eo b/src/lib/ecore/ecore_mainloop.eo index 1b04de1fb5..b98fb1bb2e 100644 --- a/src/lib/ecore/ecore_mainloop.eo +++ b/src/lib/ecore/ecore_mainloop.eo @@ -1,5 +1,3 @@ -type @extern Ecore_Select_Function: __undefined_type; - class Ecore_Mainloop (Eo.Base) { [[The Ecore Main Loop @@ -13,17 +11,6 @@ class Ecore_Mainloop (Eo.Base) ]] legacy_prefix: null; methods { - @property select_func { - [[Function to use when monitoring multiple file descriptors.]] - set { - } - get { - } - values { - select_func: Ecore_Select_Function; - [[This function will be used instead of the system call select.]] - } - } iterate { [[Runs a single iteration of the main loop to process everything on the queue.]]