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 | |
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')
-rw-r--r-- | src/bin/elementary/test_ui_box.c | 2 | ||||
-rw-r--r-- | src/bin/eolian/eo_generator.c | 2 |
2 files changed, 2 insertions, 2 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); diff --git a/src/bin/eolian/eo_generator.c b/src/bin/eolian/eo_generator.c index 3a9c68b983..35b0593f6a 100644 --- a/src/bin/eolian/eo_generator.c +++ b/src/bin/eolian/eo_generator.c @@ -22,7 +22,7 @@ tmpl_eo_ops_desc[] = "\ static Eina_Bool\n\ _@#class_class_initializer(Efl_Class *klass)\n\ {\n\ - EFL_OBJECT_OVERRIDE_OPS_DEFINE(ops,@#list_op\n\ + EFL_OPS_DEFINE(ops,@#list_op\n\ );\n\ \n\ return efl_class_functions_set(klass, &ops);\n\ |