From 743d970ac7b1077a38156a18748fa93170881d41 Mon Sep 17 00:00:00 2001 From: SooChan Lim Date: Wed, 11 Nov 2020 12:08:06 +0900 Subject: [PATCH] e_slot: use e_client_cdata_get Change-Id: I9bde01128cf56d930e9778849aef418c65b26034 --- src/bin/e_slot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_slot.c b/src/bin/e_slot.c index 8d0d5de5a2..bdfb1da5f1 100644 --- a/src/bin/e_slot.c +++ b/src/bin/e_slot.c @@ -458,7 +458,7 @@ e_slot_update(Evas_Object *obj) { if (e_object_is_del(E_OBJECT(ec))) continue; if (e_client_util_ignored_get(ec)) continue; - if (!ec->comp_data) continue; + if (!e_client_cdata_get(ec)) continue; slot_client = eina_hash_find(_e_slot_g->hash_slot_clients, &ec); if (!slot_client) continue; @@ -631,7 +631,7 @@ e_slot_client_update(E_Client *ec) { if (e_object_is_del(E_OBJECT(slot_client->ec))) return; if (e_client_util_ignored_get(slot_client->ec)) return; - if (!slot_client->ec->comp_data) return; + if (!e_client_cdata_get(slot_client->ec)) return; e_client_geometry_get(slot_client->ec, &x, &y, &w, &h); -- 2.34.1