evas_inline: Clean up evas_object_is_visible function
authorChristopher Michael <cp.michael@samsung.com>
Wed, 29 May 2019 19:36:53 +0000 (15:36 -0400)
committerWonki Kim <wonki_.kim@samsung.com>
Mon, 3 Jun 2019 07:04:08 +0000 (16:04 +0900)
commitdac83512cee12e4ca427c8b826b7291790e4596b
treed2008c487ed0cfe192c52d14b5f2a7de486bd4a4
parent4a20f201ff3ae5549d9d6034e7b606c8aaa6e650
evas_inline: Clean up evas_object_is_visible function

Summary:
This file is full of functions called as:
foo(eo_obj, obj);

Most of them can be reduced to foo(obj); and internally get the eo_obj
with obj->object

This would make it impossible to screw up calling them passing an
unrelated pair, and make calling code a little more readable.

ref T7230

Depends on D9045

Reviewers: raster, cedric, zmike

Reviewed By: zmike

Subscribers: #reviewers, #committers

Tags: #efl

Maniphest Tasks: T7230

Differential Revision: https://phab.enlightenment.org/D9046
src/lib/evas/canvas/efl_canvas_vg_object.c
src/lib/evas/canvas/evas_clip.c
src/lib/evas/canvas/evas_object_image.c
src/lib/evas/canvas/evas_object_line.c
src/lib/evas/canvas/evas_object_polygon.c
src/lib/evas/canvas/evas_object_rectangle.c
src/lib/evas/canvas/evas_object_text.c
src/lib/evas/canvas/evas_object_textblock.c
src/lib/evas/canvas/evas_object_textgrid.c
src/lib/evas/canvas/evas_render.c
src/lib/evas/include/evas_inline.x