diff options
author | Tom Hacohen <tom@stosb.com> | 2016-09-01 14:34:55 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2016-09-05 16:03:16 +0100 |
commit | c8c0bbcfcfd33907e6f8edc253f094d89bd320c5 (patch) | |
tree | cdc7d0138b802329873ccbc94bcf4ac05a6a6aee /src/bin/elementary/test_ui_box.c | |
parent | 48f7eb02a8a7c59af2118f7e617b943b0d1500c7 (diff) | |
download | efl-c8c0bbcfcfd33907e6f8edc253f094d89bd320c5.tar.gz |
Efl object: rename EFL_OBJECT_OVERRIDE_OPS_DEFINE.
It is now called EFL_OPS_DEFINE as it's used for general purpose ops
definition.
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 e12438a3e3..44fedfab4c 100644 --- a/src/bin/elementary/test_ui_box.c +++ b/src/bin/elementary/test_ui_box.c @@ -177,7 +177,7 @@ _custom_layout_update(Eo *pack, const void *data EINA_UNUSED) static void custom_check_cb(void *data, const Efl_Event *event) { - EFL_OBJECT_OVERRIDE_OPS_DEFINE(custom_layout_ops, + EFL_OPS_DEFINE(custom_layout_ops, EFL_OBJECT_OP_FUNC_OVERRIDE(efl_pack_layout_update, _custom_layout_update)); Eina_Bool chk = elm_check_selected_get(event->object); |