Changeset View
Changeset View
Standalone View
Standalone View
src/tests/eo/suite/eo_test_call_errors.c
Show First 20 Lines • Show All 83 Lines • ▼ Show 20 Line(s) | |||||
84 | 84 | | |||
85 | static Eina_Bool | 85 | static Eina_Bool | ||
86 | _errorcase_class_initializer(Efl_Class *klass) | 86 | _errorcase_class_initializer(Efl_Class *klass) | ||
87 | { | 87 | { | ||
88 | EFL_OPS_DEFINE(ops, | 88 | EFL_OPS_DEFINE(ops, | ||
89 | EFL_OBJECT_OP_FUNC(simple_error_test, _test), | 89 | EFL_OBJECT_OP_FUNC(simple_error_test, _test), | ||
90 | ); | 90 | ); | ||
91 | 91 | | |||
92 | return efl_class_functions_set(klass, &ops, NULL, NULL); | 92 | return efl_class_functions_set(klass, &ops, NULL); | ||
93 | } | 93 | } | ||
94 | 94 | | |||
95 | static const Efl_Class_Description errorcase_class_desc = { | 95 | static const Efl_Class_Description errorcase_class_desc = { | ||
96 | EO_VERSION, | 96 | EO_VERSION, | ||
97 | "Simple errorcase", | 97 | "Simple errorcase", | ||
98 | EFL_CLASS_TYPE_REGULAR, | 98 | EFL_CLASS_TYPE_REGULAR, | ||
99 | 0, | 99 | 0, | ||
100 | _errorcase_class_initializer, | 100 | _errorcase_class_initializer, | ||
Show All 29 Lines |