summaryrefslogtreecommitdiff
path: root/src/tests/eo/access/access_simple.c
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2016-08-10 15:23:04 +0100
committerTom Hacohen <tom@stosb.com>2016-08-11 17:04:43 +0100
commitc662934be8bcbaba60d1688e77533acbea5d09b9 (patch)
tree8e12b5ffd083024f09b7ec7fa9f979113056fb9d /src/tests/eo/access/access_simple.c
parente64e120a51972c44fb8cae88a78bb4aa34f502c7 (diff)
downloadefl-c662934be8bcbaba60d1688e77533acbea5d09b9.tar.gz
Change the EFL to follow the new Eo rename.
Diffstat (limited to 'src/tests/eo/access/access_simple.c')
-rw-r--r--src/tests/eo/access/access_simple.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tests/eo/access/access_simple.c b/src/tests/eo/access/access_simple.c
index b4f87661a2..56cce70cd9 100644
--- a/src/tests/eo/access/access_simple.c
+++ b/src/tests/eo/access/access_simple.c
@@ -12,8 +12,8 @@ typedef struct
int a;
} Private_Data;
-EAPI const Eo_Event_Description _EV_A_CHANGED =
- EO_EVENT_DESCRIPTION("a,changed");
+EAPI const Efl_Event_Description _EV_A_CHANGED =
+ EFL_EVENT_DESCRIPTION("a,changed");
#define MY_CLASS SIMPLE_CLASS
@@ -27,21 +27,21 @@ _a_set(Eo *obj, void *class_data, int a)
pd->protected.protected_x1 = a + 1;
pd->protected.public.public_x2 = a + 2;
- eo_event_callback_call(obj, EV_A_CHANGED, &pd->a);
+ efl_event_callback_call(obj, EV_A_CHANGED, &pd->a);
}
EAPI EO_VOID_FUNC_BODYV(simple_a_set, EO_FUNC_CALL(a), int a);
-static Eo_Op_Description op_descs[] = {
+static Efl_Op_Description op_descs[] = {
EO_OP_FUNC(simple_a_set, _a_set),
};
-static const Eo_Event_Description *event_desc[] = {
+static const Efl_Event_Description *event_desc[] = {
EV_A_CHANGED,
NULL
};
-static const Eo_Class_Description class_desc = {
+static const Efl_Class_Description class_desc = {
EO_VERSION,
"Simple",
EO_CLASS_TYPE_REGULAR,