[Webkit-unassigned] [Bug 73790] [EFL] Add RefPtrEfl specialization for evas_object.
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Dec 8 21:17:25 PST 2011
https://bugs.webkit.org/show_bug.cgi?id=73790
--- Comment #2 from KwangHyuk <hyuki.kim at samsung.com> 2011-12-08 21:17:25 PST ---
FYI, as evas_object_del doesn't unref object by itself, both evas_object_unref and evas_object_del are required for derefIfNotNull.
EAPI void
evas_object_del(Evas_Object *obj)
{
MAGIC_CHECK(obj, Evas_Object, MAGIC_OBJ);
return;
MAGIC_CHECK_END();
if (obj->delete_me) return;
if (obj->ref > 0)
{
obj->del_ref = 1;
return;
}
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list