eolian: fix tests

This commit is contained in:
Daniel Kolesa 2014-08-18 17:22:31 +01:00
parent 452497eac5
commit dbd8e4cec5
2 changed files with 7 additions and 6 deletions

View File

@ -52,14 +52,14 @@ _object_impl_constructor_2(Eo *obj, Object_Impl_Data *pd)
EOLIAN static void
_object_impl_base_constructor(Eo *obj, Object_Impl_Data *pd)
{
eo_do_super(obj, OBJECT_CLASS, base_constructor());
eo_do_super(obj, OBJECT_IMPL_CLASS, base_constructor());
}
EOLIAN static void
_object_impl_base_destructor(Eo *obj, Object_Impl_Data *pd)
{
eo_do_super(obj, OBJECT_CLASS, base_destructor());
eo_do_super(obj, OBJECT_IMPL_CLASS, base_destructor());
}
@ -75,6 +75,7 @@ _object_impl_class_destructor(Eo_Class *klass)
}
#include "object_impl.eo.c"
EOLIAN static void
_object_impl_add_c_set(Eo *obj, Object_Impl_Data *pd, Eina_List *value)
{
@ -87,4 +88,4 @@ _object_impl_add_c_get(Eo *obj, Object_Impl_Data *pd)
}
#include "object.eo.c"
#include "object_impl_add.eo.c"

View File

@ -52,14 +52,14 @@ _object_impl_constructor_2(Eo *obj, Object_Impl_Data *pd)
EOLIAN static void
_object_impl_base_constructor(Eo *obj, Object_Impl_Data *pd)
{
eo_do_super(obj, OBJECT_CLASS, base_constructor());
eo_do_super(obj, OBJECT_IMPL_CLASS, base_constructor());
}
EOLIAN static void
_object_impl_base_destructor(Eo *obj, Object_Impl_Data *pd)
{
eo_do_super(obj, OBJECT_CLASS, base_destructor());
eo_do_super(obj, OBJECT_IMPL_CLASS, base_destructor());
}
@ -75,4 +75,4 @@ _object_impl_class_destructor(Eo_Class *klass)
}
#include "object.eo.c"
#include "object_impl.eo.c"