Update the EFL according to new Eo API changes.
authorTom Hacohen <tom@stosb.com>
Fri, 9 Sep 2016 10:24:37 +0000 (11:24 +0100)
committerTom Hacohen <tom@stosb.com>
Fri, 9 Sep 2016 10:25:12 +0000 (11:25 +0100)
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
src/lib/eo/efl_future.c

index 53c79ed..143b686 100644 (file)
@@ -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 = {
index 5f37f7a..3414332 100644 (file)
@@ -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 = {