From 83b2d594dc1dcfd1c37cdf1687f73f87ed6a47cc Mon Sep 17 00:00:00 2001 From: Seunghun Lee Date: Thu, 11 Aug 2022 09:56:06 +0900 Subject: [PATCH] input_devicemgr: Apply change of function name This change should be applied with follow commit. commit 6b492bf069a1a8754ebac49b6caf42d91ccd0c04 (HEAD -> dnd) Author: Seunghun Lee Date: Thu Aug 11 09:45:03 2022 +0900 seat: Rename ds_seat_keyboard_destroy_grab properly This renames ds_seat_keyboard_destroy_grab to ds_seat_keyboard_grab_destroy The function takes ds_seat_keyboard_grab as a first argument, and we use, by convention, name of object at the beginning of function name. Change-Id: Id993400d0376c7cef4924a1641d186bb1452e03c --- src/input_devicemgr/input_devicemgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input_devicemgr/input_devicemgr.c b/src/input_devicemgr/input_devicemgr.c index 69cae4f..d410fa7 100644 --- a/src/input_devicemgr/input_devicemgr.c +++ b/src/input_devicemgr/input_devicemgr.c @@ -270,7 +270,7 @@ tz_devicemgr_destroy(struct ds_tizen_input_devicemgr *tz_devicemgr) tz_devicemgr_keymap_list_cleanup(tz_devicemgr); tz_devicemgr_blocked_keys_cleanup(tz_devicemgr); tz_devicemgr_ungrab_keyboard(tz_devicemgr); - ds_seat_keyboard_destroy_grab(tz_devicemgr->grab); + ds_seat_keyboard_grab_destroy(tz_devicemgr->grab); wl_signal_emit(&tz_devicemgr->events.destroy, tz_devicemgr); wl_list_remove(&tz_devicemgr->backend_destroy.link); -- 2.7.4