From: jinbong.lee Date: Wed, 30 Apr 2025 07:21:52 +0000 (+0900) Subject: e_view : add eo data to e_view X-Git-Tag: accepted/tizen/unified/20250508.083751~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F82%2F323582%2F1;p=platform%2Fupstream%2Fenlightenment.git e_view : add eo data to e_view - In order to replace the evas_object with e_view, - it is temporarily provided for parts that have not yet been implemented. Change-Id: I73a10116a06f6746bdd9b3d7abde61f0e0512a7b Signed-off-by: jinbong.lee --- diff --git a/src/bin/core/e_view.c b/src/bin/core/e_view.c index 377b71d03b..f831e9f42d 100644 --- a/src/bin/core/e_view.c +++ b/src/bin/core/e_view.c @@ -233,7 +233,14 @@ e_view_init(E_View *view, E_View_Type type, E_View_Impl *impl, Evas_Object *eo, _e_view_events_init(view); if (eo) - evas_object_data_set(eo, "e_view", view); + { + evas_object_data_set(eo, "e_view", view); + + // In order to replace evas_object with e_view, + // it is temporarily provided for parts that have not yet been implemented. + evas_object_data_set(eo, "evasojb", eo); + } + if (parent) {