tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=650f2b314951e85489597a2cbc1ebb17dd429ec1
commit 650f2b314951e85489597a2cbc1ebb17dd429ec1 Author: Tom Hacohen <[email protected]> Date: Mon Jan 12 13:33:39 2015 +0000 Eo base: Remove @inout usage. First step towards deprecation of @inout. --- src/lib/eo/eo_base.eo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eo/eo_base.eo b/src/lib/eo/eo_base.eo index abec82e..543c35a 100644 --- a/src/lib/eo/eo_base.eo +++ b/src/lib/eo/eo_base.eo @@ -78,7 +78,7 @@ Prevents event callbacks from being called for the object. */ wref_del { /*@ Delete the weak reference passed. */ params { - @inout Eo* wref; + @in Eo* wref; } } destructor { @@ -135,7 +135,7 @@ callbacks of the same priority are called in reverse order of creation. */ /*@ Add a new weak reference to obj. This function registers the object handle pointed by wref to obj so when obj is deleted it'll be updated to NULL. This functions should be used when you want to keep track of an object in a safe way, but you don't want to prevent it from being freed. */ params { - @inout Eo* wref; + @out Eo* wref; } } dbg_info_get { --
