zmike pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6dd861fe32415e8fe5e19b34528ed4a8588ca14a
commit 6dd861fe32415e8fe5e19b34528ed4a8588ca14a Author: Marcel Hollerbach <[email protected]> Date: Mon Jan 28 13:08:51 2019 -0500 efl_model_loop: make it abstract Summary: there is no user, additionally, there is undefined API on this object, thus make it abstract. This resolves the missing APIs of efl_model_loop. ref T5719 Depends on D7790 Reviewers: cedric Reviewed By: cedric Subscribers: cedric, #reviewers, #committers Tags: #efl Maniphest Tasks: T5719 Differential Revision: https://phab.enlightenment.org/D7791 --- src/lib/ecore/efl_model_loop.eo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ecore/efl_model_loop.eo b/src/lib/ecore/efl_model_loop.eo index f0b34ab078..8e12b0f8eb 100644 --- a/src/lib/ecore/efl_model_loop.eo +++ b/src/lib/ecore/efl_model_loop.eo @@ -1,4 +1,4 @@ -class Efl.Model_Loop extends Efl.Loop_Consumer implements Efl.Model +abstract Efl.Model_Loop extends Efl.Loop_Consumer implements Efl.Model { data: null; implements { --
