diff options
author | Tom Hacohen <tom@stosb.com> | 2016-09-08 13:08:08 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2016-09-08 13:59:04 +0100 |
commit | bd3801247e50ff1cda48af33345a918240d7d315 (patch) | |
tree | 66dcde47e0b8d00e226a431fe899fda4cc2440e7 /src/bin/elementary/test_ui_box.c | |
parent | 0f8fb7ef88d1bbb53e70c5ea0a4e8ef6a55c1a47 (diff) | |
download | efl-bd3801247e50ff1cda48af33345a918240d7d315.tar.gz |
Eo: Make function overrides implicit.
Before this commit, function overrides were explicit. That is, you'd
have to explicitly state you were overriding a function instead of
creating a new one. This made the code a tad more complex, and was also
a bit more annoying to use. This commit removes this extra piece of
information.
This means we now store much less information per function, that will
let us further optimise out structures in the future.
Diffstat (limited to 'src/bin/elementary/test_ui_box.c')
-rw-r--r-- | src/bin/elementary/test_ui_box.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/elementary/test_ui_box.c b/src/bin/elementary/test_ui_box.c index 5e918be4af..99e3e93fdf 100644 --- a/src/bin/elementary/test_ui_box.c +++ b/src/bin/elementary/test_ui_box.c @@ -178,7 +178,7 @@ static void custom_check_cb(void *data, const Efl_Event *event) { EFL_OPS_DEFINE(custom_layout_ops, - EFL_OBJECT_OP_FUNC_OVERRIDE(efl_pack_layout_update, _custom_layout_update)); + EFL_OBJECT_OP_FUNC(efl_pack_layout_update, _custom_layout_update)); Eina_Bool chk = elm_check_selected_get(event->object); Eo *obj = data; |