summaryrefslogtreecommitdiff
path: root/src/bindings
diff options
context:
space:
mode:
authorCedric BAIL <cedric@osg.samsung.com>2015-04-03 16:22:06 +0200
committerCedric BAIL <cedric@osg.samsung.com>2015-04-03 16:22:06 +0200
commit1a6dfd76e70dbc38aa62c9048647574419778335 (patch)
treea9ca3f5df020902d0442b240c5106334e2d6aa76 /src/bindings
parentd6cd365a48d8584648ad4acf4c9fa1a8e0901cf3 (diff)
downloadefl-1a6dfd76e70dbc38aa62c9048647574419778335.tar.gz
eo_cxx: fix after change in internal function naming of Eo.
Diffstat (limited to 'src/bindings')
-rw-r--r--src/bindings/eo_cxx/eo_inherit_bindings.hh10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bindings/eo_cxx/eo_inherit_bindings.hh b/src/bindings/eo_cxx/eo_inherit_bindings.hh
index e560b06adf..73fc2b1554 100644
--- a/src/bindings/eo_cxx/eo_inherit_bindings.hh
+++ b/src/bindings/eo_cxx/eo_inherit_bindings.hh
@@ -235,23 +235,23 @@ template <typename Args, typename... E>
EAPI void inherit_constructor(void* this_, Args args)
{
typedef void (*func_t)(Eo *, void *, void*, Args);
- Eo_Op_Call_Data call;
+ Eo_Op_Call_Data ___call;
static Eo_Op op = EO_NOOP;
if ( op == EO_NOOP )
op = _eo_api_op_id_get
(reinterpret_cast<void*>
(static_cast<void(*)(void*, Args)>(&detail::inherit_constructor<Args, E...>)),
::eina_main_loop_is(), __FILE__, __LINE__);
- if (!_eo_call_resolve("detail::inherit_constructor", op, &call,
+ if (!_eo_call_resolve("detail::inherit_constructor", op, &___call,
::eina_main_loop_is(), __FILE__, __LINE__))
{
- assert(_eo_call_resolve("detail::inherit_constructor", op, &call,
+ assert(_eo_call_resolve("detail::inherit_constructor", op, &___call,
::eina_main_loop_is(), __FILE__, __LINE__));
return;
}
- func_t func = (func_t) call.func;
+ func_t func = (func_t) ___call.func;
EO_HOOK_CALL_PREPARE(eo_hook_call_pre, "");
- func(call.obj, call.data, this_, args);
+ func(___call.obj, ___call.data, this_, args);
EO_HOOK_CALL_PREPARE(eo_hook_call_post, "");
}