From 284b6a5a3e27de75d3d661aba5f48f7ff5b478ba Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Fri, 9 Sep 2016 11:24:37 +0100 Subject: [PATCH] Update the EFL according to new Eo API changes. I didn't expect it (my bad), but why the hell is this done manually instead of using Eolian?! People, use Eolian. --- src/lib/ecore/efl_promise.c | 2 +- src/lib/eo/efl_future.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore/efl_promise.c b/src/lib/ecore/efl_promise.c index 53c79ed9d0..143b68685c 100644 --- a/src/lib/ecore/efl_promise.c +++ b/src/lib/ecore/efl_promise.c @@ -445,7 +445,7 @@ _efl_loop_future_class_initializer(Efl_Class *klass) EFL_OBJECT_OP_FUNC(efl_constructor, _efl_loop_future_efl_object_constructor), EFL_OBJECT_OP_FUNC(efl_destructor, _efl_loop_future_efl_object_destructor)); - return efl_class_functions_set(klass, &ops); + return efl_class_functions_set(klass, &ops, NULL); }; static const Efl_Class_Description _efl_loop_future_class_desc = { diff --git a/src/lib/eo/efl_future.c b/src/lib/eo/efl_future.c index 5f37f7afd9..34143320c5 100644 --- a/src/lib/eo/efl_future.c +++ b/src/lib/eo/efl_future.c @@ -23,7 +23,7 @@ _efl_future_class_initializer(Efl_Class *klass) EFL_OBJECT_OP_FUNC(efl_future_then, NULL), EFL_OBJECT_OP_FUNC(efl_future_cancel, NULL)); - return efl_class_functions_set(klass, &ops); + return efl_class_functions_set(klass, &ops, NULL); } static const Efl_Class_Description _efl_future_class_desc = {