diff options
author | Eunyoung Lee <ey928.lee@samsung.com> | 2022-09-29 20:20:56 +0900 |
---|---|---|
committer | Eunyoung Lee <ey928.lee@samsung.com> | 2022-09-29 20:20:56 +0900 |
commit | 72a452ecedbec07fd26a6916e253ed9ec0f186af (patch) | |
tree | ea220dbbe5b7ac638d16602eb0800070059d117e | |
parent | 1ed80e3a94b22211b2de295bef8e989ee76da35a (diff) | |
download | call-ui-tizen_7.0.tar.gz call-ui-tizen_7.0.tar.bz2 call-ui-tizen_7.0.zip |
Add a type casting for a callbacktizen_7.0_src.m2_releasetizen_7.0_hotfixtizen_7.0tizen
Change-Id: I7ffb63c4b215f74a8f7d5852c12a4613940b9d2b
-rw-r--r-- | call-ui/presenters/misc/MotionSensorPresenter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/call-ui/presenters/misc/MotionSensorPresenter.cpp b/call-ui/presenters/misc/MotionSensorPresenter.cpp index 99e18fd..d8ff443 100644 --- a/call-ui/presenters/misc/MotionSensorPresenter.cpp +++ b/call-ui/presenters/misc/MotionSensorPresenter.cpp @@ -59,7 +59,7 @@ namespace callui { } res = hand_gesture_start_recognition(m_gesture, HAND_GESTURE_WRIST_UP, - CALLBACK_B(MotionSensorPresenter::onGestureCb), + (hand_gesture_recognition_cb)CALLBACK_B(MotionSensorPresenter::onGestureCb), this); if (res != HAND_GESTURE_ERROR_NONE) { LOG_RETURN(RES_FAIL, "gesture_start_recognition() failed. " |