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.
This commit is contained in:
Tom Hacohen 2016-09-09 11:24:37 +01:00
parent b07cc74107
commit 284b6a5a3e
2 changed files with 2 additions and 2 deletions

View 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 = {

View 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 = {