Apply e_comp's interfaces 61/318561/4
authorjinbong.lee <jinbong.lee@samsung.com>
Mon, 30 Sep 2024 12:56:41 +0000 (21:56 +0900)
committerjinbong.lee <jinbong.lee@samsung.com>
Thu, 7 Nov 2024 04:27:29 +0000 (13:27 +0900)
Change-Id: I5561c9fd5607b0fdfbe466abca1c3ce54139ca0c

src/e_mod_input_method_manager.c

index 7a086ab9c60c482211c0d773673c4d9462ed821b..f59acf10c277b5d1f5fd0e4324e19342d10a4da5 100644 (file)
@@ -73,9 +73,10 @@ _transient_for_timer_handler(void *data)
 static E_Client *find_visible_ec_by_pid(uint32_t pid)
 {
    E_Client *ec;
-   Eina_List *l = NULL;
+   Eina_List *l = NULL, *ec_list;
 
-   EINA_LIST_FOREACH(e_comp->clients, l, ec)
+   ec_list = e_comp_ec_list_get();
+   EINA_LIST_FOREACH(ec_list, l, ec)
      {
         if (!ec) continue;
         if (e_object_is_del(E_OBJECT(ec))) continue;